/** * 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 DisablePaymentFormOutput */ export interface DisablePaymentFormOutput { /** * * @type {string} * @memberof DisablePaymentFormOutput */ message?: string; /** * * @type {Error} * @memberof DisablePaymentFormOutput */ error?: Error; } /** * Check if a given object implements the DisablePaymentFormOutput interface. */ export declare function instanceOfDisablePaymentFormOutput(value: object): boolean; export declare function DisablePaymentFormOutputFromJSON(json: any): DisablePaymentFormOutput; export declare function DisablePaymentFormOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): DisablePaymentFormOutput; export declare function DisablePaymentFormOutputToJSON(value?: DisablePaymentFormOutput | null): any;