@@ -0,0 +1,13 @@
|
||||
package rewardschema
|
||||
|
||||
type HistoryData struct {
|
||||
ItemCount int `json:"item_count"`
|
||||
Limit int `json:"limit"`
|
||||
History []any `json:"history"`
|
||||
}
|
||||
|
||||
type HistoryResp struct {
|
||||
ResponseData HistoryData `json:"response_data"`
|
||||
ReleaseInfo []any `json:"release_info"`
|
||||
StatusCode int `json:"status_code"`
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package rewardschema
|
||||
|
||||
type ListData struct {
|
||||
ItemCount int `json:"item_count"`
|
||||
Limit int `json:"limit"`
|
||||
Order int `json:"order"`
|
||||
Items []any `json:"items"`
|
||||
}
|
||||
|
||||
type ListResp struct {
|
||||
ResponseData ListData `json:"response_data"`
|
||||
ReleaseInfo []any `json:"release_info"`
|
||||
StatusCode int `json:"status_code"`
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package rewardschema
|
||||
|
||||
type SellUnitResp struct {
|
||||
ResponseData any `json:"response_data"`
|
||||
ReleaseInfo []any `json:"release_info"`
|
||||
StatusCode int `json:"status_code"`
|
||||
}
|
||||
Reference in New Issue
Block a user