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