cn.com.antcloud.api.ato.v1_0.request.AllSignTemplateRequest Maven / Gradle / Ivy
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//
package cn.com.antcloud.api.ato.v1_0.request;
import cn.com.antcloud.api.ato.v1_0.response.AllSignTemplateResponse;
import cn.com.antcloud.api.product.AntCloudProdRequest;
import java.lang.String;
/**
* 电子合同签署的合同模板查询服务 */
public class AllSignTemplateRequest extends AntCloudProdRequest {
private String contractType;
private String merchantId;
private String fundType;
private String fundId;
public AllSignTemplateRequest(String productInstanceId) {
super("antchain.ato.sign.template.all", "1.0", "Java-SDK-20240808", productInstanceId);
}
public AllSignTemplateRequest() {
super("antchain.ato.sign.template.all", "1.0", null);
this.setSdkVersion("Java-SDK-20240808");
}
/**
* 合同类型,如果不传则返回所有 */
public String getContractType() {
return this.contractType;
}
/**
* 合同类型,如果不传则返回所有 */
public void setContractType(String contractType) {
this.contractType = contractType;
}
/**
* 商户统一社会信用代码,SIT环境,非融必填 */
public String getMerchantId() {
return this.merchantId;
}
/**
* 商户统一社会信用代码,SIT环境,非融必填 */
public void setMerchantId(String merchantId) {
this.merchantId = merchantId;
}
/**
* ● FINANCE 融资
* ● NON_FINANCE 非融资 */
public String getFundType() {
return this.fundType;
}
/**
* ● FINANCE 融资
* ● NON_FINANCE 非融资 */
public void setFundType(String fundType) {
this.fundType = fundType;
}
/**
* 查询融资类型时,需要传入资方统一社会信用代码 */
public String getFundId() {
return this.fundId;
}
/**
* 查询融资类型时,需要传入资方统一社会信用代码 */
public void setFundId(String fundId) {
this.fundId = fundId;
}
}