/** * 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 SignDocumentInitInput */ export interface SignDocumentInitInput { /** * Required if no mobile number is already assigned to the payment account (using RegisterWallet or UpdateWalletDetails). * Format must be MSISDN : international number with country code, without "+" and "00". * @type {string} * @memberof SignDocumentInitInput */ mobileNumber?: string; /** * Use 21 for SDD mandate * @type {number} * @memberof SignDocumentInitInput */ type: number; /** * Your site will the return URL, called by WEBKIT to terminate the operation. * @type {string} * @memberof SignDocumentInitInput */ returnUrl: string; /** * You iste will return the URL, called by WEBKIT in case of an error. * @type {string} * @memberof SignDocumentInitInput */ errorUrl: string; } /** * Check if a given object implements the SignDocumentInitInput interface. */ export declare function instanceOfSignDocumentInitInput(value: object): boolean; export declare function SignDocumentInitInputFromJSON(json: any): SignDocumentInitInput; export declare function SignDocumentInitInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): SignDocumentInitInput; export declare function SignDocumentInitInputToJSON(value?: SignDocumentInitInput | null): any;