/** * Lemonway DirectKit API 2.0 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { LegalAccount } from './LegalAccount'; /** * * @export * @interface RegisterLegalAccountOutput */ export interface RegisterLegalAccountOutput { /** * * @type {LegalAccount} * @memberof RegisterLegalAccountOutput */ legalAccount?: LegalAccount; /** * * @type {Error} * @memberof RegisterLegalAccountOutput */ error?: Error; } /** * Check if a given object implements the RegisterLegalAccountOutput interface. */ export declare function instanceOfRegisterLegalAccountOutput(value: object): boolean; export declare function RegisterLegalAccountOutputFromJSON(json: any): RegisterLegalAccountOutput; export declare function RegisterLegalAccountOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegisterLegalAccountOutput; export declare function RegisterLegalAccountOutputToJSON(value?: RegisterLegalAccountOutput | null): any;