/** * 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 NameServiceCreateRequest */ export interface NameServiceCreateRequest { /** * Valid blockchain wallet address, must be an alphanumeric string (underscores allowed for chains like Midnight) * @type {string} * @memberof NameServiceCreateRequest */ address: string; /** * * @type {string} * @memberof NameServiceCreateRequest */ domain: string; /** * Cryptographic signature of the signing message proving domain ownership * @type {string} * @memberof NameServiceCreateRequest */ signature: string; } export declare function NameServiceCreateRequestFromJSON(json: any): NameServiceCreateRequest; export declare function NameServiceCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): NameServiceCreateRequest; export declare function NameServiceCreateRequestToJSON(value?: NameServiceCreateRequest | null): any;