Search Results for

    Show / Hide Table of Contents

    Class BatchErrorData

    Inheritance
    object
    BatchErrorData
    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 BatchErrorData

    Properties

    | Edit this page View Source

    Code

    An error code identifying the error type.

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

    Line

    The line number of the input file where the error occurred, if applicable.

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

    Message

    A human-readable message providing more details about the error.

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

    Param

    The name of the parameter that caused the error, if applicable.

    Declaration
    [JsonProperty("param")]
    public string Param { 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