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

    Type Alias GetUsersResponses

    type GetUsersResponses = {
        "200": {
            data: (
                {
                    email: string;
                    last_login: | {
                        login_datetime: string;
                        status: "successful"
                        | "failed";
                    }
                    | null;
                    password_created: string
                    | null;
                    restricted: boolean;
                    ssh_keys: string[];
                    tfa_enabled: boolean;
                    username: string;
                    verified_phone_number: string | null;
                } & { user_type: "parent"
                | "child"
                | "proxy"
                | "default" }
            )[];
            page: number;
            pages: number;
            results: number;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: (
            {
                email: string;
                last_login: | { login_datetime: string; status: "successful"
                | "failed" }
                | null;
                password_created: string | null;
                restricted: boolean;
                ssh_keys: string[];
                tfa_enabled: boolean;
                username: string;
                verified_phone_number: string | null;
            } & { user_type: "parent"
            | "child"
            | "proxy"
            | "default" }
        )[];
        page: number;
        pages: number;
        results: number;
    }

    A paginated list of users.

    Type Declaration

    • data: (
          {
              email: string;
              last_login: | { login_datetime: string; status: "successful"
              | "failed" }
              | null;
              password_created: string | null;
              restricted: boolean;
              ssh_keys: string[];
              tfa_enabled: boolean;
              username: string;
              verified_phone_number: string | null;
          } & { user_type: "parent"
          | "child"
          | "proxy"
          | "default" }
      )[]
    • 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.