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

86 lines (78 loc) 2.03 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. */ // May contain unused imports in some cases // @ts-ignore import type { AttrForQueryAttrValueList } from './attr-for-query-attr-value-list'; /** * * @export * @interface AttrForQuery */ export interface AttrForQuery { /** * The code representing a specific attribute. * @type {string} * @memberof AttrForQuery */ 'attrCode'?: string; /** * The name of a specific attribute. * @type {string} * @memberof AttrForQuery */ 'attrName'?: string; /** * * @type {AttrForQueryAttrValueList} * @memberof AttrForQuery */ 'attrValueList'?: AttrForQueryAttrValueList; /** * The default value of the attribute. * @type {string} * @memberof AttrForQuery */ 'defaultValue'?: string; /** * The type of input. Possible values are: / S-Single Choice/ M-Multi Choice/ D-Date Selector/ T-Text * @type {string} * @memberof AttrForQuery */ 'inputType'?: AttrForQueryInputTypeEnum; /** * A flag indicating whether can be instantiated. * @type {boolean} * @memberof AttrForQuery */ 'instantiable'?: boolean; /** * A flag indicating whether it is required. * @type {boolean} * @memberof AttrForQuery */ 'required'?: boolean; /** * Whether it is visible * @type {boolean} * @memberof AttrForQuery */ 'visible'?: boolean; } export const AttrForQueryInputTypeEnum = { S: 'S', M: 'M', D: 'D', T: 'T' } as const; export type AttrForQueryInputTypeEnum = typeof AttrForQueryInputTypeEnum[keyof typeof AttrForQueryInputTypeEnum];