jira.js
    Preparing search index...

    Interface OAuth2TokenResponse

    Normalised (camelCase) response from the Atlassian token endpoint.

    interface OAuth2TokenResponse {
        accessToken: string;
        expiresIn: number;
        refreshToken?: string;
        scope: string;
        tokenType: string;
    }
    Index
    accessToken: string
    expiresIn: number

    Access-token lifetime in seconds, as returned by Atlassian. Typically 3600.

    refreshToken?: string

    The rotated refresh token, present when offline_access was requested. Persist it — Atlassian invalidates the one you sent.

    scope: string

    Space-separated granted scopes.

    tokenType: string

    Always bearer.