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

    Type Alias GetAccountLoginResponses

    type GetAccountLoginResponses = {
        "200": {
            datetime: string;
            id: number;
            ip: string;
            restricted: boolean;
            status: "successful" | "failed";
            username: string;
        };
    }
    Index

    Properties

    Properties

    "200": {
        datetime: string;
        id: number;
        ip: string;
        restricted: boolean;
        status: "successful" | "failed";
        username: string;
    }

    An object representing a previous successful login for a User.

    Type Declaration

    • Readonlydatetime: string

      Read-only When the login was initiated.

    • Readonlyid: number

      Read-only The unique ID of this login object.

    • Readonlyip: string

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

    • Readonlyrestricted: boolean

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

    • status: "successful" | "failed"

      Read-only Whether the login attempt succeeded or failed.

    • Readonlyusername: string

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