/** * 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 { UpdateAccountStatus } from './UpdateAccountStatus'; /** * * @export * @interface UpdateAccountStatusOutput */ export interface UpdateAccountStatusOutput { /** * * @type {UpdateAccountStatus} * @memberof UpdateAccountStatusOutput */ account?: UpdateAccountStatus; /** * * @type {Error} * @memberof UpdateAccountStatusOutput */ error?: Error; } /** * Check if a given object implements the UpdateAccountStatusOutput interface. */ export declare function instanceOfUpdateAccountStatusOutput(value: object): boolean; export declare function UpdateAccountStatusOutputFromJSON(json: any): UpdateAccountStatusOutput; export declare function UpdateAccountStatusOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateAccountStatusOutput; export declare function UpdateAccountStatusOutputToJSON(value?: UpdateAccountStatusOutput | null): any;