/** * 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 AccountBlockedInput */ export interface AccountBlockedInput { /** * * @type {boolean} * @memberof AccountBlockedInput */ isBlocked: boolean; /** * * @type {string} * @memberof AccountBlockedInput */ comment?: string; } /** * Check if a given object implements the AccountBlockedInput interface. */ export declare function instanceOfAccountBlockedInput(value: object): boolean; export declare function AccountBlockedInputFromJSON(json: any): AccountBlockedInput; export declare function AccountBlockedInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountBlockedInput; export declare function AccountBlockedInputToJSON(value?: AccountBlockedInput | null): any;