/** * 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 BillingAddressDto */ export interface BillingAddressDto { /** * First name for billing address * @type {string} * @memberof BillingAddressDto */ 'firstName': string; /** * Last name for billing address * @type {string} * @memberof BillingAddressDto */ 'lastName': string; /** * Street name for billing address * @type {string} * @memberof BillingAddressDto */ 'street': string; /** * House number for billing address * @type {string} * @memberof BillingAddressDto */ 'houseNumber': string; /** * ZIP/Postal code for billing address * @type {string} * @memberof BillingAddressDto */ 'zipCode': string; /** * City name for billing address * @type {string} * @memberof BillingAddressDto */ 'city': string; }