masto
    Preparing search index...

    Interface AccountField

    Represents a profile field as a name-value pair with optional verification.

    interface AccountField {
        name: string;
        value: string;
        verifiedAt?: string | null;
    }
    Index

    Properties

    name: string

    The key of a given field's key-value pair.

    value: string

    The value associated with the name key.

    verifiedAt?: string | null

    Timestamp of when the server verified a URL value for a rel="me” link.