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