Files
baseapi/platformapi/tao_vegetable/sdk/ability587/request/AlibabaWdkSkuStoreskuScrollQueryRequest.go
邹宗楠 65976332fc 1
2023-06-15 09:08:54 +08:00

36 lines
1.1 KiB
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package request
type AlibabaWdkSkuStoreskuScrollQueryRequest struct {
/*
经营的id */
StoreId *string `json:"store_id,omitempty" required:"false" `
/*
历游标首次调用传递null后续传递ScrollPageResult.getScrollId() */
ScrollId *string `json:"scroll_id,omitempty" required:"false" `
}
func (s *AlibabaWdkSkuStoreskuScrollQueryRequest) SetStoreId(v string) *AlibabaWdkSkuStoreskuScrollQueryRequest {
s.StoreId = &v
return s
}
func (s *AlibabaWdkSkuStoreskuScrollQueryRequest) SetScrollId(v string) *AlibabaWdkSkuStoreskuScrollQueryRequest {
s.ScrollId = &v
return s
}
func (req *AlibabaWdkSkuStoreskuScrollQueryRequest) ToMap() map[string]interface{} {
paramMap := make(map[string]interface{})
if(req.StoreId != nil) {
paramMap["store_id"] = *req.StoreId
}
if(req.ScrollId != nil) {
paramMap["scroll_id"] = *req.ScrollId
}
return paramMap
}
func (req *AlibabaWdkSkuStoreskuScrollQueryRequest) ToFileMap() map[string]interface{} {
fileMap := make(map[string]interface{})
return fileMap
}