/** * 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. */ import type { SubscriptionCustomerAddress } from './subscription-customer-address'; /** * Subscription Customer Informations * @export * @interface SubscriptionCustomer */ export interface SubscriptionCustomer { /** * 11111111111 * @type {string} * @memberof SubscriptionCustomer */ 'identityNumber': string; /** * +905001234567 * @type {string} * @memberof SubscriptionCustomer */ 'gsmNumber'?: string; /** * mail@domain.com * @type {string} * @memberof SubscriptionCustomer */ 'email': string; /** * John * @type {string} * @memberof SubscriptionCustomer */ 'name': string; /** * Doe * @type {string} * @memberof SubscriptionCustomer */ 'surname': string; /** * * @type {SubscriptionCustomerAddress} * @memberof SubscriptionCustomer */ 'shippingAddress': SubscriptionCustomerAddress; /** * * @type {SubscriptionCustomerAddress} * @memberof SubscriptionCustomer */ 'billingAddress': SubscriptionCustomerAddress; }