24 lines
389 B
Go
24 lines
389 B
Go
|
|
package response
|
||
|
|
|
||
|
|
import (
|
||
|
|
"repository.lenntc.com/lenntc/third-platform-sdk/sdk/fliggysdk/defaultability/domain"
|
||
|
|
)
|
||
|
|
|
||
|
|
type AlibabaFliggyCpsCouponOfferResponse struct {
|
||
|
|
|
||
|
|
/*
|
||
|
|
System request id
|
||
|
|
*/
|
||
|
|
RequestId string `json:"request_id,omitempty" `
|
||
|
|
|
||
|
|
/*
|
||
|
|
System body
|
||
|
|
*/
|
||
|
|
Body string
|
||
|
|
|
||
|
|
/*
|
||
|
|
返回响应
|
||
|
|
*/
|
||
|
|
Result domain.AlibabaFliggyCpsCouponOfferResult `json:"result,omitempty" `
|
||
|
|
}
|