masto
    Preparing search index...

    Interface UpdateProfileParams

    interface UpdateProfileParams {
        attributionDomains?: string[] | null;
        avatar?: string | Blob | null;
        avatarDescription?: string | null;
        bot?: boolean | null;
        discoverable?: boolean | null;
        displayName?: string | null;
        fieldsAttributes?: AccountField[] | null;
        header?: string | Blob | null;
        headerDescription?: string | null;
        hideCollections?: boolean | null;
        indexable?: boolean | null;
        locked?: boolean | null;
        note?: string | null;
        showFeatured?: boolean | null;
        showMedia?: boolean | null;
        showMediaReplies?: boolean | null;
    }
    Index

    Properties

    attributionDomains?: string[] | null

    Domains of websites allowed to credit the account.

    avatar?: string | Blob | null

    Avatar image encoded using multipart/form-data

    avatarDescription?: string | null

    A textual description of the avatar.

    bot?: boolean | null

    Whether the account has a bot flag.

    discoverable?: boolean | null

    Whether the account should be shown in the profile directory.

    displayName?: string | null

    The display name to use for the profile.

    fieldsAttributes?: AccountField[] | null

    Profile metadata name and value.

    header?: string | Blob | null

    Header image encoded using multipart/form-data

    headerDescription?: string | null

    A textual description of the header.

    hideCollections?: boolean | null

    Whether you want to hide followers and followings on your profile.

    indexable?: boolean | null

    Whether the account allows indexing by search engines.

    locked?: boolean | null

    Whether manual approval of follow requests is required.

    note?: string | null

    The account bio.

    showFeatured?: boolean | null

    Whether the account wishes to have a "Featured" tab on their profile.

    showMedia?: boolean | null

    Whether the account wishes to have a "Media" tab with media attachments on their profile.

    showMediaReplies?: boolean | null

    Whether the account wishes to have replies in the "Media" tab on their profile.