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

com.alipay.api.domain.AlipayBossProdProtocolOrderPreviewModel 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 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, 2020-09-29 23:05:55
 */
public class AlipayBossProdProtocolOrderPreviewModel extends AlipayObject {

	private static final long serialVersionUID = 5411681225463477612L;

	/**
	 * 签约账号
	 */
	@ApiListField("card_nos")
	@ApiField("string")
	private List cardNos;

	/**
	 * 商户联系人信息
	 */
	@ApiField("contact_info")
	private ContactInfomation contactInfo;

	/**
	 * 是否需要包含个性化价格协议
	 */
	@ApiField("include_custom_protocol")
	private Boolean includeCustomProtocol;

	/**
	 * 商户信息
	 */
	@ApiField("merchant_info")
	private MerchantInformation merchantInfo;

	/**
	 * 是否需要文件
	 */
	@ApiField("need_file")
	private Boolean needFile;

	/**
	 * 是否需要填充协议模板动态内容(如需要,签约账号,商户信息,联系人信息需要传递)
	 */
	@ApiField("need_fill_item")
	private Boolean needFillItem;

	/**
	 * 是否返回html
	 */
	@ApiField("need_html")
	private Boolean needHtml;

	/**
	 * 销售方案
	 */
	@ApiField("sale_plans")
	private SalePlanInfo salePlans;

	/**
	 * 系统来源,不填默认为主站
	 */
	@ApiField("source")
	private String source;

	public List getCardNos() {
		return this.cardNos;
	}
	public void setCardNos(List cardNos) {
		this.cardNos = cardNos;
	}

	public ContactInfomation getContactInfo() {
		return this.contactInfo;
	}
	public void setContactInfo(ContactInfomation contactInfo) {
		this.contactInfo = contactInfo;
	}

	public Boolean getIncludeCustomProtocol() {
		return this.includeCustomProtocol;
	}
	public void setIncludeCustomProtocol(Boolean includeCustomProtocol) {
		this.includeCustomProtocol = includeCustomProtocol;
	}

	public MerchantInformation getMerchantInfo() {
		return this.merchantInfo;
	}
	public void setMerchantInfo(MerchantInformation merchantInfo) {
		this.merchantInfo = merchantInfo;
	}

	public Boolean getNeedFile() {
		return this.needFile;
	}
	public void setNeedFile(Boolean needFile) {
		this.needFile = needFile;
	}

	public Boolean getNeedFillItem() {
		return this.needFillItem;
	}
	public void setNeedFillItem(Boolean needFillItem) {
		this.needFillItem = needFillItem;
	}

	public Boolean getNeedHtml() {
		return this.needHtml;
	}
	public void setNeedHtml(Boolean needHtml) {
		this.needHtml = needHtml;
	}

	public SalePlanInfo getSalePlans() {
		return this.salePlans;
	}
	public void setSalePlans(SalePlanInfo salePlans) {
		this.salePlans = salePlans;
	}

	public String getSource() {
		return this.source;
	}
	public void setSource(String source) {
		this.source = source;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy