nuxt-app
    Preparing search index...

    Interface UserDTO

    User object

    interface UserDTO {
        createdAt?: string;
        email: string;
        id: string;
        isAdmin?: boolean;
        lastLoginAt?: string;
        name: string;
        totpInfo?: TotpInfoDTO;
    }
    Index

    Properties

    createdAt?: string

    ユーザが作成された日時

    email: string

    ユーザのメールアドレス

    id: string

    ユーザを識別するための一意なID

    isAdmin?: boolean

    ユーザが管理者かどうかを示すフラグ

    lastLoginAt?: string

    ユーザが最後にログインした日時

    name: string

    ユーザの名前

    totpInfo?: TotpInfoDTO