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

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

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.domain;

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

/**
 * 玩法结束通知V2
 *
 * @author auto create
 * @since 1.0, 2024-09-19 13:57:51
 */
public class AlipayContentCommercialInteractivecoreGamestopSyncModel extends AlipayObject {

	private static final long serialVersionUID = 6496423554738282652L;

	/**
	 * 玩法token
	 */
	@ApiField("biz_token")
	private String bizToken;

	/**
	 * 消息唯一id,用于幂等消费
	 */
	@ApiField("msg_id")
	private String msgId;

	/**
	 * 玩法结束原因
	 */
	@ApiField("reason")
	private String reason;

	/**
	 * 毫秒时间戳
	 */
	@ApiField("ts")
	private String ts;

	public String getBizToken() {
		return this.bizToken;
	}
	public void setBizToken(String bizToken) {
		this.bizToken = bizToken;
	}

	public String getMsgId() {
		return this.msgId;
	}
	public void setMsgId(String msgId) {
		this.msgId = msgId;
	}

	public String getReason() {
		return this.reason;
	}
	public void setReason(String reason) {
		this.reason = reason;
	}

	public String getTs() {
		return this.ts;
	}
	public void setTs(String ts) {
		this.ts = ts;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy