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