/******************************************************************** * ADOBE CONFIDENTIAL * __________________ * * Copyright 2024 Adobe * All Rights Reserved. * * NOTICE: All information contained herein is, and remains * the property of Adobe and its suppliers, if any. The intellectual * and technical concepts contained herein are proprietary to Adobe * and its suppliers and are protected by all applicable intellectual * property laws, including trade secret and copyright laws. * Dissemination of this information or reproduction of this material * is strictly forbidden unless prior written permission is obtained * from Adobe. *******************************************************************/ export interface CreateCustomerAddressResponse { data: { createCustomerAddress: { firstname: string; uid: string; }; }; errors?: { message: string; }[]; } export interface CreateCustomerAddressResult { firstname: string; uid: string; } interface Region { region_id: number; region: string; region_code: string; } interface CustomAttributes { attribute_code: string; value: string; } interface CustomAttributesV2 extends CustomAttributes { selected_options: { value: string; }[]; } export interface AddressForm { region?: Region; city?: string; company?: string; country_code?: string; country_id?: string; custom_attributes?: CustomAttributes[]; custom_attributesV2?: CustomAttributesV2[]; default_billing?: boolean; default_shipping?: boolean; fax?: string; firstname?: string; lastname?: string; middlename?: string; postcode?: string; prefix?: string; street?: string[]; suffix?: string; telephone?: string; vat_id?: string; } export {}; //# sourceMappingURL=createCustomerAddress.types.d.ts.map