/**
 * Farcaster Hub API
 * Perform basic queries of Farcaster state via the REST API of a Farcaster hub. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
 *
 * The version of the OpenAPI document: 2.21.0
 * Contact: team@neynar.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { UserNameType } from './user-name-type';
/**
 *
 * @export
 * @interface UserNameProof
 */
export interface UserNameProof {
    /**
     * Seconds since Unix Epoch which began on Jan 1, 1970 00:00:00 UTC
     * @type {number}
     * @memberof UserNameProof
     */
    'timestamp': number;
    /**
     *
     * @type {string}
     * @memberof UserNameProof
     */
    'name': string;
    /**
     *
     * @type {string}
     * @memberof UserNameProof
     */
    'owner': string;
    /**
     *
     * @type {string}
     * @memberof UserNameProof
     */
    'signature': string;
    /**
     * Farcaster ID (FID). A unique identifier assigned to each user in the Farcaster network. This number is permanent and cannot be changed. FIDs are assigned sequentially when users register on the network.
     * @type {number}
     * @memberof UserNameProof
     */
    'fid': number;
    /**
     *
     * @type {UserNameType}
     * @memberof UserNameProof
     */
    'type': UserNameType;
}
