/** * Magento Community * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 2.2 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { CustomerDataAddressInterface } from './customerDataAddressInterface'; import { CustomerDataCustomerExtensionInterface } from './customerDataCustomerExtensionInterface'; import { FrameworkAttributeInterface } from './frameworkAttributeInterface'; /** * Customer interface. */ export interface CustomerDataCustomerInterface { /** * Customer id */ id?: number; /** * Group id */ groupId?: number; /** * Default billing address id */ defaultBilling?: string; /** * Default shipping address id */ defaultShipping?: string; /** * Confirmation */ confirmation?: string; /** * Created at time */ createdAt?: string; /** * Updated at time */ updatedAt?: string; /** * Created in area */ createdIn?: string; /** * Date of birth */ dob?: string; /** * Email address */ email: string; /** * First name */ firstname: string; /** * Last name */ lastname: string; /** * Middle name */ middlename?: string; /** * Prefix */ prefix?: string; /** * Suffix */ suffix?: string; /** * Gender */ gender?: number; /** * Store id */ storeId?: number; /** * Tax Vat */ taxvat?: string; /** * Website id */ websiteId?: number; /** * Customer addresses. */ addresses?: Array; /** * Disable auto group change flag. */ disableAutoGroupChange?: number; extensionAttributes?: CustomerDataCustomerExtensionInterface; /** * Custom attributes values. */ customAttributes?: Array; }