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

    Type Alias GetEntityTransfersResponses

    type GetEntityTransfersResponses = {
        "200": { page: number; pages: number; results: number } & {
            data?: {
                created: string;
                entities: { linodes: number[] };
                expiry: string;
                is_sender: boolean;
                status:
                    | "accepted"
                    | "canceled"
                    | "completed"
                    | "failed"
                    | "pending"
                    | "stale";
                token: string;
                updated: string;
            }[];
        };
    }
    Index

    Properties

    Properties

    "200": { page: number; pages: number; results: number } & {
        data?: {
            created: string;
            entities: { linodes: number[] };
            expiry: string;
            is_sender: boolean;
            status:
                | "accepted"
                | "canceled"
                | "completed"
                | "failed"
                | "pending"
                | "stale";
            token: string;
            updated: string;
        }[];
    }

    Returns a paginated list of Entity Transfer objects containing the details of all transfers that have been created and accepted by this account.

    Type Declaration

    • Readonlypage: number

      Read-only The current page.

    • Readonlypages: number

      Read-only The total number of pages.

    • Readonlyresults: number

      Read-only The total number of results.

    • Optionaldata?: {
          created: string;
          entities: { linodes: number[] };
          expiry: string;
          is_sender: boolean;
          status:
              | "accepted"
              | "canceled"
              | "completed"
              | "failed"
              | "pending"
              | "stale";
          token: string;
          updated: string;
      }[]