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

com.antgroup.antchain.openapi.ato.models.UploadSignFlowRequest Maven / Gradle / Ivy

There is a newer version: 1.10.16
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ato.models;

import com.aliyun.tea.*;

public class UploadSignFlowRequest extends TeaModel {
    // OAuth模式下的授权token
    @NameInMap("auth_token")
    public String authToken;

    @NameInMap("product_instance_id")
    public String productInstanceId;

    // 	
    // 订单所属商户的统一社会信用代码
    @NameInMap("merchant_id")
    @Validation(required = true)
    public String merchantId;

    // 	
    // 商户的订单号
    @NameInMap("order_id")
    @Validation(required = true)
    public String orderId;

    // 签署合同单号
    @NameInMap("sign_no")
    @Validation(required = true)
    public String signNo;

    // 模板id
    @NameInMap("template_id")
    @Validation(required = true)
    public String templateId;

    // 合同签署时间,格式为yyyy-MM-dd HH:mm:ss
    @NameInMap("sign_time")
    @Validation(required = true)
    public String signTime;

    // 上传的pdf文件,需要以.pdf后缀结尾
    /**
     * 

待上传文件

*/ @NameInMap("fileObject") public java.io.InputStream fileObject; /** *

待上传文件名

*/ @NameInMap("fileObjectName") public String fileObjectName; @NameInMap("file_id") @Validation(required = true) public String fileId; public static UploadSignFlowRequest build(java.util.Map map) throws Exception { UploadSignFlowRequest self = new UploadSignFlowRequest(); return TeaModel.build(map, self); } public UploadSignFlowRequest setAuthToken(String authToken) { this.authToken = authToken; return this; } public String getAuthToken() { return this.authToken; } public UploadSignFlowRequest setProductInstanceId(String productInstanceId) { this.productInstanceId = productInstanceId; return this; } public String getProductInstanceId() { return this.productInstanceId; } public UploadSignFlowRequest setMerchantId(String merchantId) { this.merchantId = merchantId; return this; } public String getMerchantId() { return this.merchantId; } public UploadSignFlowRequest setOrderId(String orderId) { this.orderId = orderId; return this; } public String getOrderId() { return this.orderId; } public UploadSignFlowRequest setSignNo(String signNo) { this.signNo = signNo; return this; } public String getSignNo() { return this.signNo; } public UploadSignFlowRequest setTemplateId(String templateId) { this.templateId = templateId; return this; } public String getTemplateId() { return this.templateId; } public UploadSignFlowRequest setSignTime(String signTime) { this.signTime = signTime; return this; } public String getSignTime() { return this.signTime; } public UploadSignFlowRequest setFileObject(java.io.InputStream fileObject) { this.fileObject = fileObject; return this; } public java.io.InputStream getFileObject() { return this.fileObject; } public UploadSignFlowRequest setFileObjectName(String fileObjectName) { this.fileObjectName = fileObjectName; return this; } public String getFileObjectName() { return this.fileObjectName; } public UploadSignFlowRequest setFileId(String fileId) { this.fileId = fileId; return this; } public String getFileId() { return this.fileId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy