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

    Type Alias GetChildAccountsResponses

    type GetChildAccountsResponses = {
        "200": {
            data: {
                active_since: string;
                address_1: string;
                address_2: string;
                balance: number;
                balance_uninvoiced: number;
                billing_source: "external";
                capabilities: string[];
                city: string;
                company: string;
                country: string;
                credit_card: { expiry: string; last_four: string };
                email: string;
                euuid: string;
                first_name: string;
                last_name: string;
                phone: string;
                state: string;
                tax_id: string;
                zip: string;
            }[];
            page: number;
            pages: number;
            results: number;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            active_since: string;
            address_1: string;
            address_2: string;
            balance: number;
            balance_uninvoiced: number;
            billing_source: "external";
            capabilities: string[];
            city: string;
            company: string;
            country: string;
            credit_card: { expiry: string; last_four: string };
            email: string;
            euuid: string;
            first_name: string;
            last_name: string;
            phone: string;
            state: string;
            tax_id: string;
            zip: string;
        }[];
        page: number;
        pages: number;
        results: number;
    }

    Returns child-level accounts.

    Type Declaration

    • data: {
          active_since: string;
          address_1: string;
          address_2: string;
          balance: number;
          balance_uninvoiced: number;
          billing_source: "external";
          capabilities: string[];
          city: string;
          company: string;
          country: string;
          credit_card: { expiry: string; last_four: string };
          email: string;
          euuid: string;
          first_name: string;
          last_name: string;
          phone: string;
          state: string;
          tax_id: string;
          zip: string;
      }[]
    • 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.