123456789101112131415161718192021222324252627282930313233343536373839 |
- package apis
- type Warning struct {
- Subject string `json:"subject"`
- WarningText string `json:"warning_text"`
- To []string `json:"to"`
- }
- type WarningProviderCountReq struct {
- User string `json:"user"`
- ProviderApiName string `json:"provider_api_name"`
- ProviderName string `json:"provider_name"`
- MerchantChildApiId int64 `json:"merchant_child_api_id"`
- ProviderApiId int64 `json:"provider_api_id"`
- DayCount int `json:"day_count"`
- DayUsed int `json:"day_used"`
- GlobalDayCount int `json:"global_day_count"`
- GlobalDayUsed int `json:"global_day_used"`
- }
- type WarningProviderCountReply struct {
- }
- type WarningApiCountReq struct {
- User string `json:"user"`
- ApiName string `json:"api_name"`
- MerchantDataApiId int64 `json:"merchant_data_api_id"`
- IsFree bool `json:"is_free"`
- DayCount int `json:"day_count"`
- TotalCount int `json:"total_count"`
- DayUsed int `json:"day_used"`
- TotalUsed int `json:"total_used"`
- EndTime int64 `json:"end_time"`
- ComboType int `json:"combo_type"`
- Email string `json:"email"`
- }
- type WarningApiCountReply struct {
- }
|