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

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

package com.alipay.api.domain;

import java.util.List;

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

/**
 * 优惠说明信息
 *
 * @author auto create
 * @since 1.0, 2018-09-14 13:54:41
 */
public class VoucherDescDetailModel extends AlipayObject {

	private static final long serialVersionUID = 2686159923658445644L;

	/**
	 * 优惠的说明信息
	 */
	@ApiListField("details")
	@ApiField("string")
	private List details;

	/**
	 * 优惠的标题
	 */
	@ApiField("title")
	private String title;

	public List getDetails() {
		return this.details;
	}
	public void setDetails(List details) {
		this.details = details;
	}

	public String getTitle() {
		return this.title;
	}
	public void setTitle(String title) {
		this.title = title;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy