Class SObjectGeneric
- Namespace
- NetCoreForce.Client.Models
- Assembly
- NetCoreForce.Client.dll
A generic SObject, with ID and audit fields
public class SObjectGeneric : SObject
- Inheritance
-
SObjectGeneric
- Inherited Members
Properties
CreatedById
ID of the User who created this record SF Type: reference
[JsonProperty(PropertyName = "createdById")]
[Updateable(false)]
[Createable(false)]
public string CreatedById { get; set; }
Property Value
CreatedDate
Date and time when this record was created SF Type: datetime
[JsonProperty(PropertyName = "createdDate")]
[Updateable(false)]
[Createable(false)]
public DateTimeOffset? CreatedDate { get; set; }
Property Value
Id
Name: Id SF Type: id Custom: False
[JsonProperty(PropertyName = "id")]
[Updateable(false)]
[Createable(false)]
public string Id { get; set; }
Property Value
LastModifiedById
ID of the User who last updated this record SF Type: reference
[JsonProperty(PropertyName = "lastModifiedById")]
[Updateable(false)]
[Createable(false)]
public string LastModifiedById { get; set; }
Property Value
LastModifiedDate
Date and time when a user last modified this record SF Type: datetime
[JsonProperty(PropertyName = "lastModifiedDate")]
[Updateable(false)]
[Createable(false)]
public DateTimeOffset? LastModifiedDate { get; set; }
Property Value
SystemModstamp
Date and time when a user or automated process (such as a trigger) last modified this record. SF Type: datetime
[JsonProperty(PropertyName = "systemModstamp")]
[Updateable(false)]
[Createable(false)]
public DateTimeOffset? SystemModstamp { get; set; }