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

com.alipay.api.domain.DeliveryDetailPositionVO 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;

/**
 * 用户投放展位内容数组
 *
 * @author auto create
 * @since 1.0, 2024-06-11 17:51:32
 */
public class DeliveryDetailPositionVO extends AlipayObject {

	private static final long serialVersionUID = 7192345782435564167L;

	/**
	 * 展位码
	 */
	@ApiField("position_code")
	private String positionCode;

	/**
	 * 投放内容透出信息,包含卡片数据,展位码,疲劳度信息
	 */
	@ApiField("position_content")
	private DeliveryDetailPositionContentVO positionContent;

	public String getPositionCode() {
		return this.positionCode;
	}
	public void setPositionCode(String positionCode) {
		this.positionCode = positionCode;
	}

	public DeliveryDetailPositionContentVO getPositionContent() {
		return this.positionContent;
	}
	public void setPositionContent(DeliveryDetailPositionContentVO positionContent) {
		this.positionContent = positionContent;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy