Class KinveyMultiInsertResponse<T>
This class represents a response sent from Kinvey backend after a multi insert operation has been executed.
Inheritance
System.Object
KinveyMultiInsertResponse<T>
Namespace: Kinvey
Assembly: Kinvey.dll
Syntax
public class KinveyMultiInsertResponse<T> : object
Type Parameters
Name | Description |
---|---|
T | The type of an entity returned from the backend. |
Properties
| Improve this Doc View SourceEntities
Represents a collection of entities which were inserted to Kinvey data source.
Declaration
public List<T> Entities { get; set; }
Property Value
Type | Description |
---|---|
List<T> | List of entities. |
Errors
Represents a collection of errors which were occurring during inserting operation.
Declaration
public List<Error> Errors { get; set; }
Property Value
Type | Description |
---|---|
List<Error> | List of errors. |