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

118 lines (109 loc) 3.42 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 CustomerForQuery */ export interface CustomerForQuery { /** * The unique customer code, used for uniquely identifying the customer in business operations. * @type {string} * @memberof CustomerForQuery */ 'custNbr'?: string; /** * The first name of the customer. * @type {string} * @memberof CustomerForQuery */ 'firstName'?: string; /** * The middle name of the customer, if applicable. This is optional and may not be provided by all customers. * @type {string} * @memberof CustomerForQuery */ 'middleName'?: string; /** * The last name or family name of the customer. * @type {string} * @memberof CustomerForQuery */ 'lastName'?: string; /** * The full name of the customer, which may include first name, middle name, and last name combined. * @type {string} * @memberof CustomerForQuery */ 'custName': string; /** * The type of customer, which can indicate whether the customer is an individual or a corporate customer. Possible values are: / A: Individual Customer/ B: Corporate Customer * @type {string} * @memberof CustomerForQuery */ 'custType': CustomerForQueryCustTypeEnum; /** * The standard address identifier, which is a number representing a specific address in standardized address. * @type {number} * @memberof CustomerForQuery */ 'stdAddrId'?: number; /** * The detailed address of the customer, including street name, building number, apartment number, etc. * @type {string} * @memberof CustomerForQuery */ 'detailAddress'?: string; /** * The birth date of the customer in a specific format. Format: YYYY-MM-DD * @type {string} * @memberof CustomerForQuery */ 'birthday'?: string; /** * The gender of the customer. Possible values are: / M-Male/ F-Female/ U-Unknown * @type {string} * @memberof CustomerForQuery */ 'gender'?: CustomerForQueryGenderEnum; /** * The occupation of the customer * @type {string} * @memberof CustomerForQuery */ 'occupation'?: string; /** * The salutation or title used for the customer, such as \"Mr.\", \"Mrs.\", \"Dr.\", etc. * @type {string} * @memberof CustomerForQuery */ 'salutation'?: string; /** * A boolean value indicating whether the information has been verified (true) or not (false). * @type {boolean} * @memberof CustomerForQuery */ 'hasVerified'?: boolean; } export const CustomerForQueryCustTypeEnum = { A: 'A', B: 'B' } as const; export type CustomerForQueryCustTypeEnum = typeof CustomerForQueryCustTypeEnum[keyof typeof CustomerForQueryCustTypeEnum]; export const CustomerForQueryGenderEnum = { M: 'M', F: 'F', U: 'U' } as const; export type CustomerForQueryGenderEnum = typeof CustomerForQueryGenderEnum[keyof typeof CustomerForQueryGenderEnum];