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

    Type Alias Login

    An object representing a previous successful login for a User.

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

    Properties

    datetime?: string

    Read-only When the login was initiated.

    id?: number

    Read-only The unique ID of this login object.

    ip?: string

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

    restricted?: 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.

    username?: string

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