/** * 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 Eip712Domain */ export interface Eip712Domain { /** * Human-readable name of the signing domain * @type {string} * @memberof Eip712Domain */ name?: string; /** * Version of the signing domain * @type {string} * @memberof Eip712Domain */ version?: string; /** * Chain ID the typed data is intended for * @type {number} * @memberof Eip712Domain */ chainId?: number; /** * Valid blockchain wallet address, must be an alphanumeric string (underscores allowed for chains like Midnight) * @type {string} * @memberof Eip712Domain */ verifyingContract?: string; } export declare function Eip712DomainFromJSON(json: any): Eip712Domain; export declare function Eip712DomainFromJSONTyped(json: any, ignoreDiscriminator: boolean): Eip712Domain; export declare function Eip712DomainToJSON(value?: Eip712Domain | null): any;