/** * 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 AccountBlock */ export interface AccountBlock { /** * Updated payment account ID * @type {string} * @memberof AccountBlock */ id?: string; /** * Status of the payment account * 1: is bocked true * 0: is blocked false * @type {boolean} * @memberof AccountBlock */ isBlocked?: boolean; } /** * Check if a given object implements the AccountBlock interface. */ export declare function instanceOfAccountBlock(value: object): boolean; export declare function AccountBlockFromJSON(json: any): AccountBlock; export declare function AccountBlockFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountBlock; export declare function AccountBlockToJSON(value?: AccountBlock | null): any;