Search Results for

    Show / Hide Table of Contents

    Class Container

    Inheritance
    object
    Container
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Glitch9.AIDevKit.OpenAI
    Assembly: Glitch9.AIDevKit.Provider.OpenAI.dll
    Syntax
    public class Container

    Properties

    | Edit this page View Source

    CreatedAt

    Required. Unix timestamp (in seconds) when the container was created.

    Declaration
    [JsonProperty("created_at")]
    public int CreatedAt { get; set; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    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
    | Edit this page View Source

    Id

    Required. Unique identifier for the container.

    Declaration
    [JsonProperty("id")]
    public string Id { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Name

    Required. Name of the container.

    Declaration
    [JsonProperty("name")]
    public string Name { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    ObjectType

    Required. The type of this object.

    Declaration
    [JsonProperty("object")]
    public string ObjectType { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Status

    Required. Status of the container (e.g., active, deleted).

    Declaration
    [JsonProperty("status")]
    public string Status { get; set; }
    Property Value
    Type Description
    string

    Extension Methods

    ArrayExtensions.ToArrayOrEmpty<T>(T)
    ArrayExtensions.ToArrayOrNull<T>(T)
    EventExtensions.ToDelta<T>(T, string, int, string, bool)
    EventExtensions.ToDone<T>(T, string, int, string)
    EventExtensions.ToEvent<T>(T)
    EventExtensions.UpcastDelta<T1, T2>(T1, string, int, string, bool)
    FallbackExtensions.IsOr<TParent, TChild>(TParent, TChild)
    ResponseCastingExtensions.GetResult<T>(T)
    SystemExtensions.GetName(object)
    • Edit this page
    • View Source
    In this article
    Back to top AI DevKit Documentation