1// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2// Code generated. DO NOT EDIT.
3
4// Object Storage Service API
5//
6// Common set of Object Storage and Archive Storage APIs for managing buckets, objects, and related resources.
7//
8
9package objectstorage
10
11import (
12	"github.com/oracle/oci-go-sdk/common"
13)
14
15// CommitMultipartUploadPartDetails To use any of the API operations, you must be authorized in an IAM policy. If you are not authorized,
16// talk to an administrator. If you are an administrator who needs to write policies to give users access, see
17// Getting Started with Policies (https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm).
18type CommitMultipartUploadPartDetails struct {
19
20	// The part number for this part.
21	PartNum *int `mandatory:"true" json:"partNum"`
22
23	// The entity tag (ETag) returned when this part was uploaded.
24	Etag *string `mandatory:"true" json:"etag"`
25}
26
27func (m CommitMultipartUploadPartDetails) String() string {
28	return common.PointerString(m)
29}
30