22 lines
250 B
Go
22 lines
250 B
Go
package response
|
|
|
|
import ()
|
|
|
|
type TaobaoTmcAuthGetResponse struct {
|
|
|
|
/*
|
|
System request id
|
|
*/
|
|
RequestId string `json:"request_id,omitempty" `
|
|
|
|
/*
|
|
System body
|
|
*/
|
|
Body string
|
|
|
|
/*
|
|
result
|
|
*/
|
|
Result string `json:"result,omitempty" `
|
|
}
|