@servicenow/sdk - v4.4.1
    Preparing search index...

    The response for a EncodedSemanticClassificationsRequest

    interface EncodedSemanticClassificationsResponse {
        body?: EncodedSemanticClassificationsResponseBody;
        command: string;
        message?: string;
        metadata?: unknown;
        performanceData?: PerformanceData;
        request_seq: number;
        seq: number;
        success: boolean;
        type: "response";
    }

    Hierarchy (View Summary)

    • Response
      • EncodedSemanticClassificationsResponse
    Index

    Properties

    Contains message body if success === true.

    command: string

    The command requested.

    message?: string

    If success === false, this should always be provided. Otherwise, may (or may not) contain a success message.

    metadata?: unknown

    Contains extra information that plugin can include to be passed on

    performanceData?: PerformanceData

    Exposes information about the performance of this request-response pair.

    request_seq: number

    Sequence number of the request message.

    seq: number

    Sequence number of the message

    success: boolean

    Outcome of the request.

    type: "response"

    One of "request", "response", or "event"