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 (110 loc) • 2.87 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 ContactForQuery
*/
export interface ContactForQuery {
/**
* The unique identifier assigned to the contact person.
* @type {number}
* @memberof ContactForQuery
*/
'contactId': number;
/**
* The full name of the contact person.
* @type {string}
* @memberof ContactForQuery
*/
'contactName'?: string;
/**
* The first name of the customer.
* @type {string}
* @memberof ContactForQuery
*/
'firstName'?: string;
/**
* The last name or family name of the customer.
* @type {string}
* @memberof ContactForQuery
*/
'lastName'?: string;
/**
* A boolean value indicating whether it is primary (true) or not (false).
* @type {boolean}
* @memberof ContactForQuery
*/
'primary'?: boolean;
/**
* The type of contact. Possible values are: I: Installation Contact/ others: Normal Contact
* @type {string}
* @memberof ContactForQuery
*/
'contactType'?: string;
/**
* The phone number.
* @type {string}
* @memberof ContactForQuery
*/
'phoneNbr'?: string;
/**
* The email address.
* @type {string}
* @memberof ContactForQuery
*/
'email'?: string;
/**
* Remarks
* @type {string}
* @memberof ContactForQuery
*/
'remark'?: string;
/**
* The salutation or title used for the customer, such as \"Mr.\", \"Mrs.\", \"Dr.\", etc.
* @type {string}
* @memberof ContactForQuery
*/
'salutation'?: string;
/**
* The gender of the customer. Possible values are: / M-Male/ F-Female/ U-Unknown
* @type {string}
* @memberof ContactForQuery
*/
'gender'?: ContactForQueryGenderEnum;
/**
* The office or work phone number of the customer.
* @type {string}
* @memberof ContactForQuery
*/
'officePhoneNbr'?: string;
/**
* The fax number.
* @type {string}
* @memberof ContactForQuery
*/
'faxNbr'?: string;
/**
* The full address of the customer. This might include street address, city, state, postal code, and country.
* @type {string}
* @memberof ContactForQuery
*/
'address'?: string;
}
export const ContactForQueryGenderEnum = {
M: 'M',
F: 'F',
U: 'U'
} as const;
export type ContactForQueryGenderEnum = typeof ContactForQueryGenderEnum[keyof typeof ContactForQueryGenderEnum];