Class Container
Inherited Members
Namespace: Glitch9.AIDevKit.OpenAI
Assembly: Glitch9.AIDevKit.Provider.OpenAI.dll
Syntax
public class Container
Properties
| Edit this page View SourceCreatedAt
Required. Unix timestamp (in seconds) when the container was created.
Declaration
[JsonProperty("created_at")]
public int CreatedAt { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
ExpiresAfter
Required. The container will expire after this time period. The anchor is the reference point for the expiration. The minutes is the number of minutes after the anchor before the container expires.
Declaration
[JsonProperty("expires_after")]
public ExpiresAfter ExpiresAfter { get; set; }
Property Value
| Type | Description |
|---|---|
| ExpiresAfter |
Id
Required. Unique identifier for the container.
Declaration
[JsonProperty("id")]
public string Id { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Name
Required. Name of the container.
Declaration
[JsonProperty("name")]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ObjectType
Required. The type of this object.
Declaration
[JsonProperty("object")]
public string ObjectType { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Status
Required. Status of the container (e.g., active, deleted).
Declaration
[JsonProperty("status")]
public string Status { get; set; }
Property Value
| Type | Description |
|---|---|
| string |