third-platform-sdk/sdk/topsdk/defaultability/domain/AlibabaAlscUnionElemeStorepromotionReviewbwcQueryPageModel.go

21 lines
908 B
Go
Raw Normal View History

2024-05-04 16:57:40 +08:00
package domain
type AlibabaAlscUnionElemeStorepromotionReviewbwcQueryPageModel struct {
/*
会话ID下次请求作为请求参数用于标记分页会话自动翻页 */
SessionId *string `json:"session_id,omitempty" `
/*
分页记录记录空时表示当前sessionId对应分页记录已全部返回分页结束 */
Records *[]AlibabaAlscUnionElemeStorepromotionReviewbwcQueryReviewBwcStorePromotionDto `json:"records,omitempty" `
}
func (s *AlibabaAlscUnionElemeStorepromotionReviewbwcQueryPageModel) SetSessionId(v string) *AlibabaAlscUnionElemeStorepromotionReviewbwcQueryPageModel {
s.SessionId = &v
return s
}
func (s *AlibabaAlscUnionElemeStorepromotionReviewbwcQueryPageModel) SetRecords(v []AlibabaAlscUnionElemeStorepromotionReviewbwcQueryReviewBwcStorePromotionDto) *AlibabaAlscUnionElemeStorepromotionReviewbwcQueryPageModel {
s.Records = &v
return s
}