36 lines
644 B
Go
36 lines
644 B
Go
package response
|
|
|
|
type AlibabaTclsFulfillQaOrderCreateResponse struct {
|
|
|
|
/*
|
|
System request id
|
|
*/
|
|
RequestId string `json:"request_id,omitempty" `
|
|
|
|
/*
|
|
System body
|
|
*/
|
|
Body string
|
|
|
|
/*
|
|
鹰眼id
|
|
*/
|
|
TraceId string `json:"trace_id,omitempty" `
|
|
/*
|
|
返回素材id
|
|
*/
|
|
Data string `json:"data,omitempty" `
|
|
/*
|
|
是否成功
|
|
*/
|
|
RtSuccess bool `json:"rt_success,omitempty" `
|
|
/*
|
|
错误码
|
|
*/
|
|
RtErrorCode int64 `json:"rt_error_code,omitempty" `
|
|
/*
|
|
错误信息
|
|
*/
|
|
RtErrorMsg string `json:"rt_error_msg,omitempty" `
|
|
}
|