/** * Emil PublicAPI * The Emil Public API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { PspConfigurationResponseClass } from './psp-configuration-response-class'; /** * * @export * @interface InitiateLeadResponseClass */ export interface InitiateLeadResponseClass { /** * Unique identifier of the lead that this object belongs to. * @type {string} * @memberof InitiateLeadResponseClass */ 'leadCode': string; /** * Name of payment system provider. * @type {string} * @memberof InitiateLeadResponseClass */ 'psp': string; /** * Payment system provider configuration data required for frontend payment form initialization. * @type {PspConfigurationResponseClass} * @memberof InitiateLeadResponseClass */ 'data': PspConfigurationResponseClass; }