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

com.antgroup.antchain.openapi.twc.models.GetJusticeUploadfilepathRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

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

    @NameInMap("product_instance_id")
    public String productInstanceId;

    // 文件名称(最长128个字符)
    @NameInMap("file_name")
    @Validation(required = true)
    public String fileName;

    // 保证请求幂等性。从您的客户端生成一个参数值,确保不同请求间该参数值唯一。clientToken只支持ASCII字符,且不能超过64个字符。
    @NameInMap("client_token")
    public String clientToken;

    public static GetJusticeUploadfilepathRequest build(java.util.Map map) throws Exception {
        GetJusticeUploadfilepathRequest self = new GetJusticeUploadfilepathRequest();
        return TeaModel.build(map, self);
    }

    public GetJusticeUploadfilepathRequest setAuthToken(String authToken) {
        this.authToken = authToken;
        return this;
    }
    public String getAuthToken() {
        return this.authToken;
    }

    public GetJusticeUploadfilepathRequest setProductInstanceId(String productInstanceId) {
        this.productInstanceId = productInstanceId;
        return this;
    }
    public String getProductInstanceId() {
        return this.productInstanceId;
    }

    public GetJusticeUploadfilepathRequest setFileName(String fileName) {
        this.fileName = fileName;
        return this;
    }
    public String getFileName() {
        return this.fileName;
    }

    public GetJusticeUploadfilepathRequest setClientToken(String clientToken) {
        this.clientToken = clientToken;
        return this;
    }
    public String getClientToken() {
        return this.clientToken;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy