/** * 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. */ /** * * @export * @interface InitiateAdyenPaymentSetupResponseClass */ export interface InitiateAdyenPaymentSetupResponseClass { /** * The client key associated with the Adyen account. * @type {string} * @memberof InitiateAdyenPaymentSetupResponseClass */ 'clientKey': string; /** * A unique reference for the shopper. * @type {string} * @memberof InitiateAdyenPaymentSetupResponseClass */ 'shopperReference': string; /** * The environment in which the payment request is being made (e.g., \"TEST\" or \"LIVE\"). * @type {string} * @memberof InitiateAdyenPaymentSetupResponseClass */ 'environment': string; /** * The country code associated with the shopper\'s payment details. * @type {string} * @memberof InitiateAdyenPaymentSetupResponseClass */ 'country'?: string; }