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

com.antgroup.antchain.openapi.twc.models.FileInfo 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 FileInfo extends TeaModel {
    // 文件key
    @NameInMap("file_key")
    @Validation(required = true)
    public String fileKey;

    // 文件名称
    @NameInMap("file_name")
    @Validation(required = true)
    public String fileName;

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

    public FileInfo setFileKey(String fileKey) {
        this.fileKey = fileKey;
        return this;
    }
    public String getFileKey() {
        return this.fileKey;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy