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

58 lines (50 loc) 1.24 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 UserForMod */ export interface UserForMod { /** * User\'s name. * @type {string} * @memberof UserForMod */ 'userName'?: string; /** * User\'s alias. * @type {string} * @memberof UserForMod */ 'alias'?: string; /** * The birth date of the customer in a specific format. Format: YYYY-MM-DD * @type {string} * @memberof UserForMod */ 'birthday'?: string; /** * The gender of the customer. Possible values are: / M-Male/ F-Female/ U-Unknown * @type {string} * @memberof UserForMod */ 'gender'?: UserForModGenderEnum; } export const UserForModGenderEnum = { M: 'M', F: 'F', U: 'U' } as const; export type UserForModGenderEnum = typeof UserForModGenderEnum[keyof typeof UserForModGenderEnum];