All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.KbAdvertSpecialAdvContentModifyResponse Maven / Gradle / Ivy

The newest version!
package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 口碑广告系统创建特殊广告内容返回模型
 *
 * @author auto create
 * @since 1.0, 2017-03-10 10:04:13
 */
public class KbAdvertSpecialAdvContentModifyResponse extends AlipayObject {

	private static final long serialVersionUID = 8687144961434718329L;

	/**
	 * 修改广告内容的结果码;
Success:修改成功;
PASSWORD_RED_EXIST:口令已存在;
ITEM_INVALID:商品无效或者已过期;
CREATE_PASSWORD_MORE_THEN_MAX:口令超过限定最多数量;
ADV_REPEAT_PASSWORD_RED:当前广告已存在口令,不能再次创建;
PASSWORD_RED_INVALID:口令校验失败;
CONTRACT_INVALID:合同已失效,不能创建口令;
NOT_SUPPORT_ERROR:非代金券不支持创建口令;
	 */
	@ApiField("code")
	private String code;

	/**
	 * 口令红包信息
	 */
	@ApiField("content_password")
	private KbAdvertContentPassword contentPassword;

	/**
	 * 吱口令结果
	 */
	@ApiField("content_share_code")
	private KbAdvertContentShareCode contentShareCode;

	/**
	 * 广告内容类型;
当该值是passwordRed时,code的值表示修改口令红包的结果码;
	 */
	@ApiField("content_type")
	private String contentType;

	/**
	 * 修改结果描述
	 */
	@ApiField("msg")
	private String msg;

	public String getCode() {
		return this.code;
	}
	public void setCode(String code) {
		this.code = code;
	}

	public KbAdvertContentPassword getContentPassword() {
		return this.contentPassword;
	}
	public void setContentPassword(KbAdvertContentPassword contentPassword) {
		this.contentPassword = contentPassword;
	}

	public KbAdvertContentShareCode getContentShareCode() {
		return this.contentShareCode;
	}
	public void setContentShareCode(KbAdvertContentShareCode contentShareCode) {
		this.contentShareCode = contentShareCode;
	}

	public String getContentType() {
		return this.contentType;
	}
	public void setContentType(String contentType) {
		this.contentType = contentType;
	}

	public String getMsg() {
		return this.msg;
	}
	public void setMsg(String msg) {
		this.msg = msg;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy