/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface NameServiceResponse */ export interface NameServiceResponse { /** * * @type {string} * @memberof NameServiceResponse */ id: string; /** * Valid blockchain wallet address, must be an alphanumeric string (underscores allowed for chains like Midnight) * @type {string} * @memberof NameServiceResponse */ address: string; /** * * @type {string} * @memberof NameServiceResponse */ domain: string; /** * If the ENS domain is enabled, then this timestamp will be present. * @type {Date} * @memberof NameServiceResponse */ enabledAt?: Date | null; } export declare function NameServiceResponseFromJSON(json: any): NameServiceResponse; export declare function NameServiceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): NameServiceResponse; export declare function NameServiceResponseToJSON(value?: NameServiceResponse | null): any;