Bitbucket Data Center API Client
    Preparing search index...

    Interface BitbucketSshKey

    Represents an SSH key associated with a Bitbucket user.

    Returned by GET /rest/ssh/latest/keys?user={slug}.

    interface BitbucketSshKey {
        algorithmType?: string;
        bitbucketUser?: {
            active: boolean;
            displayName: string;
            emailAddress: string;
            id: number;
            name: string;
            slug: string;
            type: string;
        };
        bitLength?: number;
        createdDate?: number;
        expiryDays?: number;
        fingerprint?: string;
        id: number;
        label: string;
        lastAuthenticated?: string;
        text: string;
    }
    Index

    Properties

    algorithmType?: string
    bitbucketUser?: {
        active: boolean;
        displayName: string;
        emailAddress: string;
        id: number;
        name: string;
        slug: string;
        type: string;
    }

    Present only on endpoints that include the key owner

    bitLength?: number
    createdDate?: number
    expiryDays?: number
    fingerprint?: string
    id: number
    label: string
    lastAuthenticated?: string
    text: string