@akamai/openapi-ts
    Preparing search index...

    Type Alias GetSharegroupTokenResponses

    type GetSharegroupTokenResponses = {
        "200": {
            created: string;
            expiry: string | null;
            label: string;
            sharegroup_label: string;
            sharegroup_uuid: string;
            status: "pending" | "active" | "revoked" | "expired";
            token_uuid: string;
            updated: string | null;
            valid_for_sharegroup_uuid: string;
        };
    }
    Index

    Properties

    Properties

    "200": {
        created: string;
        expiry: string | null;
        label: string;
        sharegroup_label: string;
        sharegroup_uuid: string;
        status: "pending" | "active" | "revoked" | "expired";
        token_uuid: string;
        updated: string | null;
        valid_for_sharegroup_uuid: string;
    }

    ImageShareGroupMemberTokens object.

    Type Declaration

    • Readonlycreated: string

      Read-only When this token was created.

    • Readonlyexpiry: string | null

      Read-only When this token expires.

    • label: string

      A short description of the token.

    • Readonlysharegroup_label: string

      Read-only The share group's descriptive name.

    • Readonlysharegroup_uuid: string

      Read-only The share group's unique identifier.

    • status: "pending" | "active" | "revoked" | "expired"

      Read-only Represents the current token status.

      • pending: The token has been created but is not yet active.
      • active: The token is currently active and usable.
      • revoked: The token has been deleted and is no longer valid.
      • expired: The token has passed its validity period and is no longer usable.
    • Readonlytoken_uuid: string

      Read-only A unique identifier for the token, used to reference it after creation.

    • Readonlyupdated: string | null

      Read-only When this token was last updated.

    • Readonlyvalid_for_sharegroup_uuid: string

      Read-only The unique identifier of the share group you created a token for.