Class Model
public class Model
- Inheritance
-
Model
- Inherited Members
Constructors
Model(string?, string?, int, string?)
Initializes a new instance of the Model class.
public Model(string? id = null, string? varObject = null, int created = 0, string? ownedBy = null)
Parameters
id
stringid (required).
varObject
stringvarObject (required).
created
intcreated (required).
ownedBy
stringownedBy (required).
Properties
Created
Gets or Sets Created
[JsonPropertyName("created")]
public int Created { get; set; }
Property Value
Id
Gets or Sets Id
[JsonPropertyName("id")]
public string Id { get; set; }
Property Value
OwnedBy
Gets or Sets OwnedBy
[JsonPropertyName("owned_by")]
public string OwnedBy { get; set; }
Property Value
VarObject
Gets or Sets VarObject
[JsonPropertyName("object")]
public string VarObject { get; set; }