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
85 lines (80 loc) • 2.22 kB
text/typescript
/* 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 CustAddressForQuery
*/
export interface CustAddressForQuery {
/**
* A unique identifier for a customer address.
* @type {number}
* @memberof CustAddressForQuery
*/
'custAddrId': number;
/**
* The standard address identifier, which is a number representing a specific address in standardized address.
* @type {number}
* @memberof CustAddressForQuery
*/
'stdAddrId'?: number;
/**
* The name of the standardized address.
* @type {string}
* @memberof CustAddressForQuery
*/
'stdAddrName'?: string;
/**
* The detailed address, which could be the customer\'s address, shipping address, or installation address, as input by the user.
* @type {string}
* @memberof CustAddressForQuery
*/
'detailAddr'?: string;
/**
* The phone number.
* @type {string}
* @memberof CustAddressForQuery
*/
'phoneNbr'?: string;
/**
* The email address.
* @type {string}
* @memberof CustAddressForQuery
*/
'email'?: string;
/**
* The carbon copy email address for communication. This is used to send a copy of an email to another recipient.
* @type {string}
* @memberof CustAddressForQuery
*/
'ccEmail'?: string;
/**
* The SMS or mobile number of the customer, used for sending text messages.
* @type {string}
* @memberof CustAddressForQuery
*/
'smsNbr'?: string;
/**
* The fax number.
* @type {string}
* @memberof CustAddressForQuery
*/
'faxNbr'?: string;
/**
* The full address of the customer. This might include street address, city, state, postal code, and country.
* @type {string}
* @memberof CustAddressForQuery
*/
'address'?: string;
}