Bitbucket Data Center API Client
    Preparing search index...

    Interface BitbucketAccessToken

    Represents an HTTP access token associated with a Bitbucket user.

    Returned by GET /rest/access-tokens/latest/users/{slug}.

    interface BitbucketAccessToken {
        createdDate?: number;
        expiryDate?: number;
        id: string;
        lastAuthenticated?: number;
        name: string;
        permissions: string[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    createdDate?: number
    expiryDate?: number
    id: string
    lastAuthenticated?: number
    name: string
    permissions: string[]

    Permissions granted to the token (e.g. ['REPO_READ', 'PROJECT_READ'])