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

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

The newest version!
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, 2017-06-05 11:25:25
 */
public class ClauseTerm extends AlipayObject {

	private static final long serialVersionUID = 7432561259914489543L;

	/**
	 * 说明描述内容
	 */
	@ApiListField("descriptions")
	@ApiField("string")
	private List descriptions;

	/**
	 * 说明title
	 */
	@ApiField("title")
	private String title;

	public List getDescriptions() {
		return this.descriptions;
	}
	public void setDescriptions(List descriptions) {
		this.descriptions = descriptions;
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy