/** * 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 { CardDetailsDto } from './card-details-dto'; import { SepaDirectDto } from './sepa-direct-dto'; /** * * @export * @interface CompleteAdyenPaymentSetupRequestDto */ export interface CompleteAdyenPaymentSetupRequestDto { /** * Unique identifier for the shopper on Adyen. * @type {string} * @memberof CompleteAdyenPaymentSetupRequestDto */ 'shopperReference': string; /** * The payment method type on Adyen. * @type {string} * @memberof CompleteAdyenPaymentSetupRequestDto */ 'paymentMethodType': string; /** * Unique identifier of the lead that this object belongs to. * @type {string} * @memberof CompleteAdyenPaymentSetupRequestDto */ 'leadCode'?: string; /** * The account\'s type. * @type {string} * @memberof CompleteAdyenPaymentSetupRequestDto */ 'accountType': string; /** * The accounts holder\'s first name. * @type {string} * @memberof CompleteAdyenPaymentSetupRequestDto */ 'firstName'?: string; /** * The account holder\'s last name. * @type {string} * @memberof CompleteAdyenPaymentSetupRequestDto */ 'lastName'?: string; /** * The account\'s company name. * @type {string} * @memberof CompleteAdyenPaymentSetupRequestDto */ 'companyName'?: string; /** * The account\'s email address * @type {string} * @memberof CompleteAdyenPaymentSetupRequestDto */ 'email': string; /** * * @type {CardDetailsDto} * @memberof CompleteAdyenPaymentSetupRequestDto */ 'cardDetails'?: CardDetailsDto; /** * * @type {SepaDirectDto} * @memberof CompleteAdyenPaymentSetupRequestDto */ 'sepaDetails'?: SepaDirectDto; }