Class CreateResponse
- Namespace
- NetCoreForce.Client.Models
- Assembly
- NetCoreForce.Client.dll
Success response after creating new record
public class CreateResponse
- Inheritance
-
CreateResponse
- Derived
- Inherited Members
Properties
Errors
List of errors, if creation failed.
[JsonProperty(PropertyName = "errors")]
public object Errors { get; set; }
Property Value
Id
Object Id of the newly created record/object.
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Success
Whether or not the object was created.
[JsonProperty(PropertyName = "success")]
public bool Success { get; set; }