Interface AccountField

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

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

Properties

name: string

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

value: string

The value associated with the name key.

verifiedAt?: null | string

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