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

    Represents an OAuth card. This interface defines the structure of an OAuth card, including its buttons, connection name, text, and associated resources.

    interface OAuthCard {
        buttons: CardAction[];
        connectionName: string;
        text: string;
        tokenExchangeResource: TokenExchangeResource;
        tokenPostResource: TokenPostResource;
    }
    Index

    Properties

    buttons: CardAction[]

    The buttons associated with the OAuth card.

    connectionName: string

    The connection name for the OAuth card.

    text: string

    The text content of the OAuth card.

    tokenExchangeResource: TokenExchangeResource

    The token exchange resource for the OAuth card.

    tokenPostResource: TokenPostResource

    The token post resource for the OAuth card.