/** * 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. */ /** * * @export * @interface UpdateAccountStatus */ export interface UpdateAccountStatus { /** * Updated payment account ID * @type {string} * @memberof UpdateAccountStatus */ id?: string; /** * Status of the payment account * @type {number} * @memberof UpdateAccountStatus */ status?: number; } /** * Check if a given object implements the UpdateAccountStatus interface. */ export declare function instanceOfUpdateAccountStatus(value: object): boolean; export declare function UpdateAccountStatusFromJSON(json: any): UpdateAccountStatus; export declare function UpdateAccountStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateAccountStatus; export declare function UpdateAccountStatusToJSON(value?: UpdateAccountStatus | null): any;