Table of Contents

Class Model

Namespace
AutoGen.Mistral
Assembly
AutoGen.Mistral.dll
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 string

id (required).

varObject string

varObject (required).

created int

created (required).

ownedBy string

ownedBy (required).

Properties

Created

Gets or Sets Created

[JsonPropertyName("created")]
public int Created { get; set; }

Property Value

int

Id

Gets or Sets Id

[JsonPropertyName("id")]
public string Id { get; set; }

Property Value

string

OwnedBy

Gets or Sets OwnedBy

[JsonPropertyName("owned_by")]
public string OwnedBy { get; set; }

Property Value

string

VarObject

Gets or Sets VarObject

[JsonPropertyName("object")]
public string VarObject { get; set; }

Property Value

string