/** * 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 NameService */ export interface NameService { /** * Contract address of the name service registry * @type {string} * @memberof NameService */ registry?: string; } export declare function NameServiceFromJSON(json: any): NameService; export declare function NameServiceFromJSONTyped(json: any, ignoreDiscriminator: boolean): NameService; export declare function NameServiceToJSON(value?: NameService | null): any;