/** * 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 EnrolmentInitInput */ export interface EnrolmentInitInput { /** * Identification provider
0 = Deutsche Post POSTIDENT.
* @type {number} * @memberof EnrolmentInitInput */ provider: EnrolmentInitInputProviderEnum; /** * Forwarding URL to which in case of a successful identification should be forwarded * @type {string} * @memberof EnrolmentInitInput */ successUrl?: string; /** * Forwarding URL to which in case of an unsuccessful identification should be forwarded * @type {string} * @memberof EnrolmentInitInput */ declinedUrl?: string; /** * Forwarding URL to forward to when the coupon has been downloaded * @type {string} * @memberof EnrolmentInitInput */ couponRequestedUrl?: string; /** * Forwarding URL to forward to when the coupon has been downloaded * @type {string} * @memberof EnrolmentInitInput */ reviewPendingUrl?: string; /** * Forwarding URL to which in case of incomplete identification should be forwarded * @type {string} * @memberof EnrolmentInitInput */ incompleteUrl?: string; } /** * @export */ export declare const EnrolmentInitInputProviderEnum: { readonly NUMBER_0: 0; }; export declare type EnrolmentInitInputProviderEnum = typeof EnrolmentInitInputProviderEnum[keyof typeof EnrolmentInitInputProviderEnum]; /** * Check if a given object implements the EnrolmentInitInput interface. */ export declare function instanceOfEnrolmentInitInput(value: object): boolean; export declare function EnrolmentInitInputFromJSON(json: any): EnrolmentInitInput; export declare function EnrolmentInitInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): EnrolmentInitInput; export declare function EnrolmentInitInputToJSON(value?: EnrolmentInitInput | null): any;