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
69 lines (61 loc) • 1.93 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 IdentificationTypeForQuery
*/
export interface IdentificationTypeForQuery {
/**
* The type of identification document.
* @type {string}
* @memberof IdentificationTypeForQuery
*/
'identificationType': string;
/**
* The name of the identification type.
* @type {string}
* @memberof IdentificationTypeForQuery
*/
'identificationTypeName': 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 IdentificationTypeForQuery
*/
'custType': IdentificationTypeForQueryCustTypeEnum;
/**
* This parameter specifies the minimum length.
* @type {number}
* @memberof IdentificationTypeForQuery
*/
'minLength'?: number;
/**
* This parameter specifies the maximum length.
* @type {number}
* @memberof IdentificationTypeForQuery
*/
'maxLength'?: number;
/**
* This parameter represents a regular expression pattern that the identification type must match, if applicable.
* @type {string}
* @memberof IdentificationTypeForQuery
*/
'regExp'?: string;
}
export const IdentificationTypeForQueryCustTypeEnum = {
A: 'A',
B: 'B'
} as const;
export type IdentificationTypeForQueryCustTypeEnum = typeof IdentificationTypeForQueryCustTypeEnum[keyof typeof IdentificationTypeForQueryCustTypeEnum];