/** * 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 ACS */ export interface ACS { /** * * @type {string} * @memberof ACS */ actionUrl?: string; /** * * @type {string} * @memberof ACS */ actionMethod?: string; /** * * @type {string} * @memberof ACS */ pareqFieldName?: string; /** * * @type {string} * @memberof ACS */ pareqFieldValue?: string; /** * * @type {string} * @memberof ACS */ termurlFieldName?: string; /** * * @type {string} * @memberof ACS */ mdFieldName?: string; /** * * @type {string} * @memberof ACS */ mdFieldValue?: string; /** * * @type {string} * @memberof ACS */ mpiResult?: string; } /** * Check if a given object implements the ACS interface. */ export declare function instanceOfACS(value: object): boolean; export declare function ACSFromJSON(json: any): ACS; export declare function ACSFromJSONTyped(json: any, ignoreDiscriminator: boolean): ACS; export declare function ACSToJSON(value?: ACS | null): any;