22 lines
289 B
Go
22 lines
289 B
Go
|
|
package response
|
||
|
|
|
||
|
|
import ()
|
||
|
|
|
||
|
|
type AlitripTravelHotelticketProductProductupdateResponse struct {
|
||
|
|
|
||
|
|
/*
|
||
|
|
System request id
|
||
|
|
*/
|
||
|
|
RequestId string `json:"request_id,omitempty" `
|
||
|
|
|
||
|
|
/*
|
||
|
|
System body
|
||
|
|
*/
|
||
|
|
Body string
|
||
|
|
|
||
|
|
/*
|
||
|
|
是否成功
|
||
|
|
*/
|
||
|
|
IsSuccess bool `json:"is_success,omitempty" `
|
||
|
|
}
|