winccoa-manager
    Preparing search index...

    Interface Status

    Interface representing the status of an RPC operation.

    interface Status {
        get isOk(): boolean;
        get statusCode(): StatusCode;
        get text(): string;
        toString(): string;
    }
    Index

    Accessors

    Methods

    Accessors

    • get isOk(): boolean

      Indicates whether the status represents a successful operation. True if the status is OK, false otherwise.

      Returns boolean

    • get text(): string

      The text associated with the status.

      Returns string

    Methods

    • Converts the status to a string.

      Returns string

      The status as a string.