mirror of
https://github.com/docker/docs.git
synced 2026-04-02 01:08:53 +07:00
10 lines
138 B
Go
10 lines
138 B
Go
package amz
|
|
|
|
type ErrorResponse struct {
|
|
Errors []struct {
|
|
Code string
|
|
Message string
|
|
} `xml:"Errors>Error"`
|
|
RequestID string
|
|
}
|