/** * 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 ExportAleoViewKeyRequest */ export interface ExportAleoViewKeyRequest { /** * Unique identifier for the view-key export session * @type {string} * @memberof ExportAleoViewKeyRequest */ exportId: string; } export declare function ExportAleoViewKeyRequestFromJSON(json: any): ExportAleoViewKeyRequest; export declare function ExportAleoViewKeyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExportAleoViewKeyRequest; export declare function ExportAleoViewKeyRequestToJSON(value?: ExportAleoViewKeyRequest | null): any;