/** * 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 { EisSepaDebitConfigResponseClass } from './eis-sepa-debit-config-response-class'; /** * * @export * @interface PspConfigurationResponseClass */ export interface PspConfigurationResponseClass { /** * Public key. Used on frontend to load the payment form component. * @type {string} * @memberof PspConfigurationResponseClass */ 'publicKey': string; /** * Mapping of payment method to payment system provider. * @type {object} * @memberof PspConfigurationResponseClass */ 'paymentMethodMapping': object; /** * Configuration specific to EIS SEPA Debit payment method. Includes creditor details and collection settings. * @type {EisSepaDebitConfigResponseClass} * @memberof PspConfigurationResponseClass */ 'eisSepaDebitConfig': EisSepaDebitConfigResponseClass; }