masto
    Preparing search index...

    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?: number | null;
        language: string | null;
        note: string;
        privacy?: (keyof StatusVisibilityRegistry) | null;
        sensitive?: boolean | null;
    }
    Index

    Properties

    fields: AccountField[]

    Metadata about the account.

    followRequestsCount?: number | null

    The number of pending follow requests.

    language: string | null

    The default posting language for new statuses.

    note: string

    Profile bio.

    privacy?: (keyof StatusVisibilityRegistry) | null

    The default post privacy to be used for new statuses.

    sensitive?: boolean | null

    Whether new statuses should be marked sensitive by default.