/** * 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 { IndividualAccount } from './IndividualAccount'; /** * * @export * @interface RegisterIndividualAccountOutput */ export interface RegisterIndividualAccountOutput { /** * * @type {IndividualAccount} * @memberof RegisterIndividualAccountOutput */ account?: IndividualAccount; /** * * @type {Error} * @memberof RegisterIndividualAccountOutput */ error?: Error; } /** * Check if a given object implements the RegisterIndividualAccountOutput interface. */ export declare function instanceOfRegisterIndividualAccountOutput(value: object): boolean; export declare function RegisterIndividualAccountOutputFromJSON(json: any): RegisterIndividualAccountOutput; export declare function RegisterIndividualAccountOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegisterIndividualAccountOutput; export declare function RegisterIndividualAccountOutputToJSON(value?: RegisterIndividualAccountOutput | null): any;