third-platform-sdk/sdk/topsdk/defaultability/domain/AlibabaAlscUnionElemeStorepromotionReviewbwcQueryPageModel.go
2024-05-04 16:57:40 +08:00

21 lines
908 B
Go
Raw 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 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
}