/** * 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 MoneyInIDealInitOutput */ export interface MoneyInIDealInitOutput { /** * Transaction ID. You will this this value to confirm the transaction * @type {number} * @memberof MoneyInIDealInitOutput */ id?: number; /** * Redirected URL for the client on the iDeal page payment * @type {string} * @memberof MoneyInIDealInitOutput */ actionUrl?: string; /** * * @type {Error} * @memberof MoneyInIDealInitOutput */ error?: Error; } /** * Check if a given object implements the MoneyInIDealInitOutput interface. */ export declare function instanceOfMoneyInIDealInitOutput(value: object): boolean; export declare function MoneyInIDealInitOutputFromJSON(json: any): MoneyInIDealInitOutput; export declare function MoneyInIDealInitOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): MoneyInIDealInitOutput; export declare function MoneyInIDealInitOutputToJSON(value?: MoneyInIDealInitOutput | null): any;