/** * Iyzico API * Iyzico Open API Declaration * * The version of the OpenAPI document: 0.1.15 * Contact: oguz.ozcan@vennyx.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Customer address model for subscriptions * @export * @interface SubscriptionCustomerAddress */ export interface SubscriptionCustomerAddress { /** * Nidakule Göztepe, Merdivenköy Mah. Bora Sok. No:1 * @type {string} * @memberof SubscriptionCustomerAddress */ 'address': string; /** * 34742 * @type {string} * @memberof SubscriptionCustomerAddress */ 'zipCode'?: string; /** * John Doe * @type {string} * @memberof SubscriptionCustomerAddress */ 'contactName': string; /** * Istanbul * @type {string} * @memberof SubscriptionCustomerAddress */ 'city': string; /** * Turkey * @type {string} * @memberof SubscriptionCustomerAddress */ 'country': string; }