UNPKG

whalecloud-dxp-api-react-native

Version:

This section explains how to use the SDK and illustrates it with an example: - This chapter is essential to learn - For specific business development, see [Bussiness Scenario](https://www.digchan.info/en-US/dxp/user-sso/sign-up) - The Business Scenario pr

91 lines (86 loc) 2.28 kB
/* tslint:disable */ /* eslint-disable */ /** * DXP API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: * * * 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 InstallAddressForQuery */ export interface InstallAddressForQuery { /** * The standard address identifier, which is a number representing a specific address in standardized address. * @type {number} * @memberof InstallAddressForQuery */ 'stdAddrId'?: number; /** * The unique identifier for the address. * @type {string} * @memberof InstallAddressForQuery */ 'addressId'?: string; /** * The detailed address, which could be the customer\'s address, shipping address, or installation address, as input by the user. * @type {string} * @memberof InstallAddressForQuery */ 'detailAddr'?: string; /** * Postal code * @type {string} * @memberof InstallAddressForQuery */ 'postCode'?: string; /** * The full name of the contact person. * @type {string} * @memberof InstallAddressForQuery */ 'contactName'?: string; /** * The phone number. * @type {string} * @memberof InstallAddressForQuery */ 'phoneNbr'?: string; /** * The email address. * @type {string} * @memberof InstallAddressForQuery */ 'email'?: string; /** * The full address of the customer. This might include street address, city, state, postal code, and country. * @type {string} * @memberof InstallAddressForQuery */ 'address'?: string; /** * The longitude. * @type {string} * @memberof InstallAddressForQuery */ 'longitude'?: string; /** * The latitude. * @type {string} * @memberof InstallAddressForQuery */ 'latitude'?: string; /** * A landmark or point of reference near the subscriber\'s installation address. * @type {string} * @memberof InstallAddressForQuery */ 'landmark'?: string; }