1
0
mirror of https://github.com/minio/minio-cpp.git synced 2025-07-30 05:23:05 +03:00

allow checksum headers in single PutObject() (#184)

This commit is contained in:
Harshavardhana
2025-01-05 16:12:18 +05:30
committed by GitHub
parent 818d2036ac
commit b8ebbf30e5
2 changed files with 8 additions and 0 deletions

View File

@ -190,6 +190,10 @@ struct CreateMultipartUploadResponse : public Response {
struct PutObjectResponse : public Response {
std::string etag;
std::string version_id;
std::string checksumCRC32;
std::string checksumCRC32C;
std::string checksumSHA1;
std::string checksumSHA256;
PutObjectResponse() = default;