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