/** * 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 { AccountDetails } from './AccountDetails'; /** * * @export * @interface AccountDetailsOutput */ export interface AccountDetailsOutput { /** * * @type {AccountDetails} * @memberof AccountDetailsOutput */ account?: AccountDetails; /** * * @type {Error} * @memberof AccountDetailsOutput */ error?: Error; } /** * Check if a given object implements the AccountDetailsOutput interface. */ export declare function instanceOfAccountDetailsOutput(value: object): boolean; export declare function AccountDetailsOutputFromJSON(json: any): AccountDetailsOutput; export declare function AccountDetailsOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountDetailsOutput; export declare function AccountDetailsOutputToJSON(value?: AccountDetailsOutput | null): any;