Interface MetaUser

MetaUser

interface MetaUser {
    date_joined?: string;
    email?: string;
    first_name?: string;
    groups: string[];
    has_analytics_access?: boolean;
    id?: number;
    is_active?: boolean;
    is_staff?: boolean;
    is_superuser?: boolean;
    last_login?: null | string;
    last_name?: string;
    url?: string;
    username: string;
}

Properties

date_joined?: string

MetaUser

email?: string

MetaUser

first_name?: string

MetaUser

groups: string[]

MetaUser

has_analytics_access?: boolean

MetaUser

id?: number

MetaUser

is_active?: boolean

Designates whether this user should be treated as active. Unselect this instead of deleting accounts.

MetaUser

is_staff?: boolean

Designates whether the user can log into this admin site.

MetaUser

is_superuser?: boolean

Designates that this user has all permissions without explicitly assigning them.

MetaUser

last_login?: null | string

MetaUser

last_name?: string

MetaUser

url?: string

MetaUser

username: string

Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.

MetaUser