Click or drag to resize

AddResult Structure

A common structure used to report the results of added objects
Inheritance Hierarchy
SystemObject
  SystemValueType
    AppOne.Services.V2AddResult

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

The AddResult type exposes the following members.

Properties
 NameDescription
Public propertyCode exampleID The entity ID of the object just added to the system
Public propertyCode exampleMessages The message of the add result.
Public propertyCode exampleStatus The status of the object just added to the system
Top
Remarks
A common structure used to report the results of added objects. The object is returned for the bulk of most add operations.

Example
JavaScript
...
 "Results": [   {
         "ID": 23926,
         "Messages": ["Labor level detail successfully added for code 'my_code'."],
         "Status": 1
      }]
See Also