com.aliyun.ccp.ossclient.models.PreHashCheckSuccessResponse 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 PreHashCheckSuccessResponse extends TeaModel {
@NameInMap("requestId")
public String requestId;
@NameInMap("code")
public String code;
@NameInMap("file_name")
public String fileName;
@NameInMap("message")
public String message;
@NameInMap("parent_file_id")
@Validation(required = true, pattern = "[a-z0-9]{1, 50}")
public String parentFileId;
@NameInMap("pre_hash")
public String preHash;
public static PreHashCheckSuccessResponse build(java.util.Map map) throws Exception {
PreHashCheckSuccessResponse self = new PreHashCheckSuccessResponse();
return TeaModel.build(map, self);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy