diff --git a/object/types.go b/object/types.go index 160e820..0ca3f12 100644 --- a/object/types.go +++ b/object/types.go @@ -1615,6 +1615,18 @@ func (r *PatchResponse) SetBody(v *PatchResponseBody) { r.Body = v } +func (r *PatchResponseBody) GetObjectID() *refs.ObjectID { + if r != nil { + return r.ObjectID + } + + return nil +} + +func (r *PatchResponseBody) SetObjectID(objectID *refs.ObjectID) { + r.ObjectID = objectID +} + func (r *PatchRequestBodyPatch) GetChunk() []byte { if r != nil { return r.Chunk