Click or drag to resize

DeleteResult Structure

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

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

The DeleteResult type exposes the following members.

Properties
 NameDescription
Public propertyCode exampleID The entity ID of the object just deleted from the system
Public propertyCode exampleIsDeleted A flag to validate if the object was successfully removed from a single operation request
Public propertyCode exampleMessage The message of the delete result.
Public propertyCode exampleStatus The status of the object/row where a delete operation from the system was attempted
Top
Remarks
A common structure used to report the results of deleted objects. This struct is shared for the vast majority of all Delete operations.
Example
JSON
"Results": [   {
   "ID": 3555,
   "IsDeleted": false,
   "Message": "No schedule with ID:3555 found",
   "Status": 2
}]
See Also