mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-12-14 18:49:08 +08:00
11 lines
290 B
Go
11 lines
290 B
Go
|
package s3api
|
||
|
|
||
|
type Grantee struct {
|
||
|
XMLNS string `xml:"xmlns:xsi,attr"`
|
||
|
XMLXSI string `xml:"xsi:type,attr"`
|
||
|
Type string `xml:"Type"`
|
||
|
ID string `xml:"ID,omitempty"`
|
||
|
DisplayName string `xml:"DisplayName,omitempty"`
|
||
|
URI string `xml:"URI,omitempty"`
|
||
|
}
|