/** * 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. */ import type { SddMandate } from './SddMandate'; /** * * @export * @interface RegisterSddMandateOutput */ export interface RegisterSddMandateOutput { /** * * @type {SddMandate} * @memberof RegisterSddMandateOutput */ sSDMandate?: SddMandate; /** * * @type {Error} * @memberof RegisterSddMandateOutput */ error?: Error; } /** * Check if a given object implements the RegisterSddMandateOutput interface. */ export declare function instanceOfRegisterSddMandateOutput(value: object): boolean; export declare function RegisterSddMandateOutputFromJSON(json: any): RegisterSddMandateOutput; export declare function RegisterSddMandateOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegisterSddMandateOutput; export declare function RegisterSddMandateOutputToJSON(value?: RegisterSddMandateOutput | null): any;