/** * 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 PSP */ export interface PSP { /** * Get the Error Message from PSP * @type {string} * @memberof PSP */ message?: string; } /** * Check if a given object implements the PSP interface. */ export declare function instanceOfPSP(value: object): boolean; export declare function PSPFromJSON(json: any): PSP; export declare function PSPFromJSONTyped(json: any, ignoreDiscriminator: boolean): PSP; export declare function PSPToJSON(value?: PSP | null): any;