diff --git a/v2/object/types.go b/v2/object/types.go index c6a0d43..a8c6123 100644 --- a/v2/object/types.go +++ b/v2/object/types.go @@ -153,8 +153,6 @@ type PutResponse struct { type DeleteRequestBody struct { addr *refs.Address - - ownerID *refs.OwnerID } type DeleteRequest struct { @@ -1080,20 +1078,6 @@ func (r *DeleteRequestBody) SetAddress(v *refs.Address) { } } -func (r *DeleteRequestBody) GetOwnerID() *refs.OwnerID { - if r != nil { - return r.ownerID - } - - return nil -} - -func (r *DeleteRequestBody) SetOwnerID(v *refs.OwnerID) { - if r != nil { - r.ownerID = v - } -} - func (r *DeleteRequest) GetBody() *DeleteRequestBody { if r != nil { return r.body