/**
 * Neynar API
 * The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
 *
 * The version of the OpenAPI document: 3.175.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 { FarcasterManifest } from './farcaster-manifest';
/**
 * Response containing domain information, metadata, and validation errors if any
 */
export interface MiniappDomainResponse {
    /**
     * Creation timestamp
     */
    'created_at': string;
    /**
     * Domain name
     */
    'domain': string;
    /**
     * High-level error message if processing failed
     */
    'error_message'?: string;
    /**
     * FID associated with the domain
     */
    'fid': number;
    /**
     * Home URL metadata if available
     */
    'home_url_metadata'?: {
        [key: string]: any;
    } | null;
    'manifest': FarcasterManifest;
    /**
     * Last update timestamp
     */
    'updated_at': string;
    /**
     * Validation errors from processing, if any
     */
    'validation_errors'?: Array<string>;
    /**
     * Whether the domain was found in the table before processing
     */
    'was_found': boolean;
    /**
     * Whether the domain was refreshed/updated during this request
     */
    'was_refreshed': boolean;
}
