com.aliyun.ccp.ossclient.models.BaseCreateFileRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ccp-oss-client Show documentation
Show all versions of ccp-oss-client Show documentation
Aliyun CCP oss SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccp.ossclient.models;
import com.aliyun.tea.*;
public class BaseCreateFileRequest extends TeaModel {
@NameInMap("content_md5")
@Validation(required = true)
public String contentMd5;
@NameInMap("content_type")
@Validation(required = true)
public String contentType;
@NameInMap("name")
@Validation(required = true)
public String name;
@NameInMap("part_info_list")
public UploadPartInfo[] partInfoList;
@NameInMap("size")
@Validation(required = true)
public Long size;
@NameInMap("type")
@Validation(required = true)
public String type;
public static BaseCreateFileRequest build(java.util.Map map) throws Exception {
BaseCreateFileRequest self = new BaseCreateFileRequest();
return TeaModel.build(map, self);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy