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

61 lines (53 loc) 1.48 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 { AttrValueForAdd } from './attr-value-for-add'; /** * * @export * @interface OfferInstForReq */ export interface OfferInstForReq { /** * A unique identifier for an offer. * @type {string} * @memberof OfferInstForReq */ 'offerNbr': string; /** * The unique identifier for the offer instance. * @type {number} * @memberof OfferInstForReq */ 'offerInstId'?: number; /** * List of attribute values for the purchase package. * @type {Array<AttrValueForAdd>} * @memberof OfferInstForReq */ 'attrValueList'?: Array<AttrValueForAdd>; /** * The action type. Possible values are: / A-Add; / M-Modify; / D-Delete * @type {string} * @memberof OfferInstForReq */ 'actType': OfferInstForReqActTypeEnum; } export const OfferInstForReqActTypeEnum = { A: 'A', M: 'M', D: 'D' } as const; export type OfferInstForReqActTypeEnum = typeof OfferInstForReqActTypeEnum[keyof typeof OfferInstForReqActTypeEnum];