/** * 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 { AccountBlock } from './AccountBlock'; /** * * @export * @interface AccountBlockedOutput */ export interface AccountBlockedOutput { /** * * @type {AccountBlock} * @memberof AccountBlockedOutput */ account?: AccountBlock; /** * * @type {Error} * @memberof AccountBlockedOutput */ error?: Error; } /** * Check if a given object implements the AccountBlockedOutput interface. */ export declare function instanceOfAccountBlockedOutput(value: object): boolean; export declare function AccountBlockedOutputFromJSON(json: any): AccountBlockedOutput; export declare function AccountBlockedOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountBlockedOutput; export declare function AccountBlockedOutputToJSON(value?: AccountBlockedOutput | null): any;