Interface AccountSource

Represents display or publishing preferences of user's own account. Returned as an additional entity when verifying and updated credentials, as an attribute of Account.

interface AccountSource {
    fields: AccountField;
    followRequestsCount?: null | number;
    language: null | string;
    note: string;
    privacy?: null | StatusVisibility;
    sensitive?: null | boolean;
}

Properties

fields: AccountField

Metadata about the account.

followRequestsCount?: null | number

The number of pending follow requests.

language: null | string

The default posting language for new statuses.

note: string

Profile bio.

privacy?: null | StatusVisibility

The default post privacy to be used for new statuses.

sensitive?: null | boolean

Whether new statuses should be marked sensitive by default.