Interface IProfileUpdateOptions

Profile update options.

interface IProfileUpdateOptions {
    description?: string;
    location?: string;
    name?: string;
    url?: string;
}

Implemented by

Properties

description?: string

Bio/description of the user (max 160 characters).

location?: string

Location of the user (max 30 characters).

name?: string

Display name (max 50 characters).

The name field represents the user's display name shown on their profile. This is different from the username (screen_name/handle).

url?: string

URL associated with the profile.

Will be prepended with http:// if not present.