interface UserDetails {
    business?: {
        department?: string;
        location?: string;
        position?: string;
    } & {
        [key: string]: unknown;
    };
    personal?: {
        email?: string;
        im?: string;
        phone?: string;
        website?: string;
    } & {
        [key: string]: unknown;
    };
}

Hierarchy

  • Record<string, unknown>
    • UserDetails

Properties

Properties

business?: {
    department?: string;
    location?: string;
    position?: string;
} & {
    [key: string]: unknown;
}

Type declaration

  • Optionaldepartment?: string

    This property has been deprecated due to privacy changes. There is no replacement. See the migration guide for details.

  • Optionallocation?: string

    This property has been deprecated due to privacy changes. There is no replacement. See the migration guide for details.

  • Optionalposition?: string

    This property has been deprecated due to privacy changes. There is no replacement. See the migration guide for details.

personal?: {
    email?: string;
    im?: string;
    phone?: string;
    website?: string;
} & {
    [key: string]: unknown;
}

Type declaration

  • Optionalemail?: string

    This property has been deprecated due to privacy changes. Use the User.email property instead. See the migration guide for details.

  • Optionalim?: string

    This property has been deprecated due to privacy changes. There is no replacement. See the migration guide for details.

  • Optionalphone?: string

    This property has been deprecated due to privacy changes. There is no replacement. See the migration guide for details.

  • Optionalwebsite?: string

    This property has been deprecated due to privacy changes. There is no replacement. See the migration guide for details.