package data import ( "encoding/xml" "time" oid "github.com/nspcc-dev/neofs-sdk-go/object/id" ) type ( ObjectLockConfiguration struct { XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ ObjectLockConfiguration" json:"-"` ObjectLockEnabled string `xml:"ObjectLockEnabled" json:"ObjectLockEnabled"` Rule *ObjectLockRule `xml:"Rule" json:"Rule"` } ObjectLockRule struct { DefaultRetention *DefaultRetention `xml:"DefaultRetention" json:"DefaultRetention"` } DefaultRetention struct { Days int64 `xml:"Days" json:"Days"` Mode string `xml:"Mode" json:"Mode"` Years int64 `xml:"Years" json:"Years"` } LegalHold struct { XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ LegalHold" json:"-"` Status string `xml:"Status" json:"Status"` } Retention struct { XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ Retention" json:"-"` Mode string `xml:"Mode" json:"Mode"` RetainUntilDate string `xml:"RetainUntilDate" json:"RetainUntilDate"` } ObjectLock struct { Until time.Time LegalHold bool IsCompliance bool Objects []oid.ID } )