/** * 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 SignDocumentInitOutput */ export interface SignDocumentInitOutput { /** * Payment token to use as GET parameter when redirecting your user to the WEBKIT. * so even if the user comes back to your error page (if the user cancelled for example), * you can still submit the same token to the WEBKIT. * @type {string} * @memberof SignDocumentInitOutput */ signDocument?: string; /** * * @type {Error} * @memberof SignDocumentInitOutput */ error?: Error; } /** * Check if a given object implements the SignDocumentInitOutput interface. */ export declare function instanceOfSignDocumentInitOutput(value: object): boolean; export declare function SignDocumentInitOutputFromJSON(json: any): SignDocumentInitOutput; export declare function SignDocumentInitOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): SignDocumentInitOutput; export declare function SignDocumentInitOutputToJSON(value?: SignDocumentInitOutput | null): any;