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

    Type Alias AddedGetAccountLogins200

    type AddedGetAccountLogins200 = {
        data?: {
            datetime?: string;
            id?: number;
            ip?: string;
            restricted?: boolean;
            status?: "successful" | "failed";
            username?: string;
        }[];
        page?: number;
        pages?: number;
        results?: number;
    }
    Index

    Properties

    data?: {
        datetime?: string;
        id?: number;
        ip?: string;
        restricted?: boolean;
        status?: "successful" | "failed";
        username?: string;
    }[]

    Type Declaration

    • Optional Readonlydatetime?: string

      Read-only When the login was initiated.

    • Optional Readonlyid?: number

      Read-only The unique ID of this login object.

    • Optional Readonlyip?: string

      Read-only The remote IP address that requested the login.

    • Optional Readonlyrestricted?: boolean

      Read-only True if the User that attempted the login was a restricted User, false otherwise.

    • Optionalstatus?: "successful" | "failed"

      Read-only Whether the login attempt succeeded or failed.

    • Optional Readonlyusername?: string

      Read-only The username of the User that attempted the login.

    page?: number

    Read-only The current page.

    pages?: number

    Read-only The total number of pages.

    results?: number

    Read-only The total number of results.