Documentation - v1.2.0-alpha.3
    Preparing search index...

    Represents an error definition for the Agents SDK. Each error definition includes an error code, description, and an optional help link. If helplink is not provided, a default help link will be used.

    interface AgentErrorDefinition {
        code: number;
        description: string;
        helplink?: string;
    }
    Index

    Properties

    code: number

    Error code for the exception

    description: string

    Displayed error message

    helplink?: string

    Optional help URL link for the error. If not provided, the default help link will be used.