Table of Contents

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

object

Id

Object Id of the newly created record/object.

[JsonProperty(PropertyName = "id")]
public string Id { get; set; }

Property Value

string

Success

Whether or not the object was created.

[JsonProperty(PropertyName = "success")]
public bool Success { get; set; }

Property Value

bool