/** * 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 UpdateLegalAccountDetailsOutput */ export interface UpdateLegalAccountDetailsOutput { /** * * @type {LegalAccount} * @memberof UpdateLegalAccountDetailsOutput */ account?: LegalAccount; /** * * @type {Error} * @memberof UpdateLegalAccountDetailsOutput */ error?: Error; } /** * Check if a given object implements the UpdateLegalAccountDetailsOutput interface. */ export declare function instanceOfUpdateLegalAccountDetailsOutput(value: object): boolean; export declare function UpdateLegalAccountDetailsOutputFromJSON(json: any): UpdateLegalAccountDetailsOutput; export declare function UpdateLegalAccountDetailsOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateLegalAccountDetailsOutput; export declare function UpdateLegalAccountDetailsOutputToJSON(value?: UpdateLegalAccountDetailsOutput | null): any;