Interface UpdateUserDto<CustomFields>

interface UpdateUserDto {
    addressLine1?: string;
    addressLine2?: string;
    addressLine3?: string;
    avatar?: string;
    customFields?: CustomFields;
    name?: string;
    password?: string;
    phoneNumber?: string;
    postalCode?: string;
    provider?: string;
    providerId?: string;
    timeline?: UserTimelines;
    typeId?: string;
}

Type Parameters

  • CustomFields = unknown

Properties

addressLine1?: string
addressLine2?: string
addressLine3?: string
avatar?: string
customFields?: CustomFields
name?: string
password?: string
phoneNumber?: string
postalCode?: string
provider?: string
providerId?: string
timeline?: UserTimelines
typeId?: string

Generated using TypeDoc