You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/vendor/github.com/NaverCloudPlatform/ncloud-sdk-go/common/commonResponse.go

15 lines
288 B

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
}