Documentation
    Preparing search index...

    Interface UserType

    Standard properties shared by all persisted base objects.

    interface UserType {
        birthday?: Date;
        createdAt?: string | number;
        createdBy?: any;
        deletedAt?: string | number;
        deletedBy?: any;
        email: string;
        firstname: string;
        gender?: "male" | "female" | "nonbinary";
        lastname: string;
        name: string;
        password: string;
        status?: string;
        updatedAt?: string | number;
        updatedBy?: any;
        [x: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [x: string]: any
    Index

    Properties

    birthday?: Date
    createdAt?: string | number

    Epoch timestamp or string detailing creation date.

    createdBy?: any

    Identity referencing the creator of this object.

    deletedAt?: string | number

    Epoch timestamp or string detailing deletion date.

    deletedBy?: any

    Identity referencing the user who deleted this resource.

    email: string
    firstname: string
    gender?: "male" | "female" | "nonbinary"
    lastname: string
    name: string

    The name of the resource instance.

    password: string
    status?: string

    Current status indicator (e.g. 'active', 'deleted').

    updatedAt?: string | number

    Epoch timestamp or string detailing update date.

    updatedBy?: any

    Identity referencing the last modifier.