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
97 lines (92 loc) • 2.33 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 MktCreativeInfo
*/
export interface MktCreativeInfo {
/**
* Recommended words type. Possible values are: / 1-Text; / 2-Image; / 3-Rich text; / 5-App popup type; / 11-App
* @type {string}
* @memberof MktCreativeInfo
*/
'recommendedWordsType': string;
/**
* Recommended words title
* @type {string}
* @memberof MktCreativeInfo
*/
'recommendedTitle'?: string;
/**
* Recommended words subtitle
* @type {string}
* @memberof MktCreativeInfo
*/
'recommendedSubTitle'?: string;
/**
* Recommended words
* @type {string}
* @memberof MktCreativeInfo
*/
'recommendedWords'?: string;
/**
* The URL of the thumbnail.
* @type {string}
* @memberof MktCreativeInfo
*/
'thumbUrl'?: string;
/**
* Click action. Possible values are: / 0-Click URL; / 1-Close
* @type {string}
* @memberof MktCreativeInfo
*/
'clickAction'?: string;
/**
* Jump link
* @type {string}
* @memberof MktCreativeInfo
*/
'jumpLink'?: string;
/**
* Link open type. Possible values are: / A-Native/ B-Webview/ C-Mobile default browser
* @type {string}
* @memberof MktCreativeInfo
*/
'linkType'?: string;
/**
* Creative code
* @type {string}
* @memberof MktCreativeInfo
*/
'creativeCode'?: string;
/**
* Creative type. Possible values are: / 1-Rich Media; / 2-CMS
* @type {string}
* @memberof MktCreativeInfo
*/
'creativeType'?: string;
/**
* Web content loading url
* @type {string}
* @memberof MktCreativeInfo
*/
'serverUrl'?: string;
/**
* Is show close button. Possible values are: / true-Show close button; / false-Hide close button
* @type {boolean}
* @memberof MktCreativeInfo
*/
'showCloseButton'?: boolean;
}