Click or drag to resize

UpdateUserTimePunchOut Structure

A data structure representing the response returned from the API upon completing an Update request.
Inheritance Hierarchy
SystemObject
  SystemValueType
    AppOne.Services.V2.ContractsUpdateUserTimePunchOut

Namespace: AppOne.Services.V2.Contracts
Assembly: AppOne.Web.Service (in AppOne.Web.Service.dll) Version: 1.0.141
Syntax
public struct UpdateUserTimePunchOut : IServiceOut

The UpdateUserTimePunchOut type exposes the following members.

Properties
 NameDescription
Public propertyCode exampleReport The report structure helps to provide diagnostics information about the service just requested
Public propertyCode exampleResults A list of UpdateUserTimePunchResult objects representing the status of each UpdateUserTimePunchObject passed into the API.
Public propertyCode exampleResultsIdentifier A GUID represented as a string - which is appended to any errors logged by the application. If you need to contact Technical Support for assistance you can provide this value to assist them in looking up any errors.
Public propertyCode exampleResultStatus The overall Status of the update. See RequestStatus for enum values
Public propertyCode exampleResultStatusDescription A string representation of the ResultStatus object
Top
Example
UpdateUserTimePunchOut Structure
{
    "ResultStatus": 0,
    "ResultStatusDescription": "Completed",
    "Results": [
        {
            "ID": 1,
            "Status": 0,
            "StatusDescription": "Updated"
        }
    ],
    "ResultsIdentifier": "e21a798b-7ec1-43f6-9ebe-f59ebaea016d",
    "Report": {
        "APIVersion": "2.0",
        "ProcessTime": "0.0541909",
        "RequestTime": "/Date(1689284559724-0700)/",
        "ResponseTime": "/Date(1689284559779-0700)/",
        "Results": 1
    }
}
See Also