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
67 lines (62 loc) • 1.54 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 PromotionForQuery
*/
export interface PromotionForQuery {
/**
* The number identifying the promotion.
* @type {string}
* @memberof PromotionForQuery
*/
'promotionNbr': string;
/**
* The name of the promotion.
* @type {string}
* @memberof PromotionForQuery
*/
'promotionName': string;
/**
* The code assigned to the promotion.
* @type {string}
* @memberof PromotionForQuery
*/
'promotionCode': string;
/**
* A brief description.
* @type {string}
* @memberof PromotionForQuery
*/
'brief': string;
/**
* The URL to the thumbnail image representing the promotion.
* @type {string}
* @memberof PromotionForQuery
*/
'thumbImageUrl': string;
/**
* The expiration date. Use ISO 8601 standard, YYYY-MM-DDTHH:MM:SS
* @type {string}
* @memberof PromotionForQuery
*/
'expDate': string;
/**
* A flag indicating whether the promotion is mandatory (true/false).
* @type {boolean}
* @memberof PromotionForQuery
*/
'mandatory'?: boolean;
}