interface CreateUserDto {
    addressLine1?: string;
    addressLine2?: string;
    addressLine3?: string;
    avatar?: string;
    email?: string;
    emailVerified?: boolean;
    name: string;
    password?: string;
    phoneNumber?: string;
    postalCode?: string;
    preferences?: {
        key: string;
        value: string;
    }[];
    provider?: string;
    providerId?: string;
    timeline?: UserTimelines;
    typeId: "100" | "010" | "011" | "001" | "000";
}

Hierarchy

  • WithCustomFields
    • CreateUserDto

Properties

addressLine1?: string
addressLine2?: string
addressLine3?: string
avatar?: string
email?: string
emailVerified?: boolean
name: string
password?: string
phoneNumber?: string
postalCode?: string
preferences?: {
    key: string;
    value: string;
}[]

Type declaration

  • key: string
  • value: string
provider?: string
providerId?: string
timeline?: UserTimelines
typeId: "100" | "010" | "011" | "001" | "000"

Generated using TypeDoc