interface UserDetails {
    business?: {
        department?: string;
        location?: string;
        position?: string;
    };
    personal?: {
        email?: string;
        im?: string;
        phone?: string;
        website?: string;
    };
}

Properties

Properties

business?: {
    department?: string;
    location?: string;
    position?: string;
}

Type declaration

  • Optional department?: string

    Deprecated

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

  • Optional location?: string

    Deprecated

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

  • Optional position?: string

    Deprecated

    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;
}

Type declaration

  • Optional email?: string

    Deprecated

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

  • Optional im?: string

    Deprecated

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

  • Optional phone?: string

    Deprecated

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

  • Optional website?: string

    Deprecated

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

Generated using TypeDoc v0.25.12