packer-cn/vendor/github.com/NaverCloudPlatform/ncloud-sdk-go/common/commonResponse.go

15 lines
288 B
Go

package common
import "encoding/xml"
type CommonResponse struct {
RequestID string `xml:"requestId"`
ReturnCode int `xml:"returnCode"`
ReturnMessage string `xml:"returnMessage"`
}
type ResponseError struct {
ResponseError xml.Name `xml:"responseError"`
CommonResponse
}