@shortcut/client
    Preparing search index...

    Interface Token

    interface Token {
        created_at?: string;
        description?: string;
        disabled?: boolean;
        email_address?: string;
        entity_type?: "token";
        id?: string;
        last_used_at?: string | null;
        member?: MemberSlim;
        scopes?: string[] | null;
        updated_at?: string;
        uri?: string;
    }
    Index

    Properties

    created_at?: string

    The time/date the Token was created.

    date-time

    description?: string

    The description of the Token.

    disabled?: boolean

    True if the Token has been disabled.

    email_address?: string

    The email address of the Member this Token belongs to.

    entity_type?: "token"

    The type of this entity.

    id?: string

    The unique ID of the Token.

    uuid

    last_used_at?: string | null

    The date the Token was last used. Null if never used.

    date-time

    member?: MemberSlim

    The Member who created the Doc.

    scopes?: string[] | null

    The scopes granted to this token. Possible values: "read", "write", "story-write", "comment-write", "admin". Null for legacy tokens.

    updated_at?: string

    The time/date the Token was last updated.

    date-time

    uri?: string

    A resolvable URI for the entity.

    2048

    ^https?://.+$