/** * 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 { PaymentForm } from './PaymentForm'; /** * * @export * @interface CreatePaymentFormOutput */ export interface CreatePaymentFormOutput { /** * * @type {PaymentForm} * @memberof CreatePaymentFormOutput */ form?: PaymentForm; /** * * @type {Error} * @memberof CreatePaymentFormOutput */ error?: Error; } /** * Check if a given object implements the CreatePaymentFormOutput interface. */ export declare function instanceOfCreatePaymentFormOutput(value: object): boolean; export declare function CreatePaymentFormOutputFromJSON(json: any): CreatePaymentFormOutput; export declare function CreatePaymentFormOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePaymentFormOutput; export declare function CreatePaymentFormOutputToJSON(value?: CreatePaymentFormOutput | null): any;