check.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package gd_management
  2. type ManagementGetNameReq struct {
  3. MerchantId int64 `json:"merchant_id"`
  4. ApiId int64 `json:"api_id"`
  5. ProviderApiId int64 `json:"provider_api_id"`
  6. H5ServiceId int64 `json:"h5_service_id"`
  7. H5ApiId int64 `json:"h5_api_id"`
  8. }
  9. type ManagementGetNameReply struct {
  10. MerchantName string `json:"merchant_name"`
  11. ApiName string `json:"api_name"`
  12. ProviderName string `json:"provider_name"`
  13. ProviderApiName string `json:"provider_api_name"`
  14. H5ServiceName string `json:"h5_service_name"`
  15. H5ApiName string `json:"h5_api_name"`
  16. ProviderId int64 `json:"provider_id"`
  17. }
  18. type ManagementGetProviderApiLimitCountReq struct {
  19. ProviderApiId int64 `json:"provider_api_id"`
  20. }
  21. type ManagementGetProviderApiLimitCountReply struct {
  22. ProviderApiId int64 `json:"provider_api_id"`
  23. Count int64 `json:"count"`
  24. }
  25. type MangementGetUserMerchantCountCodeReq struct {
  26. }
  27. type UserMerchantCountCode struct {
  28. ApiId int64 `json:"api_id"`
  29. MerchantDataApiId int64 `merchant_data_api_id`
  30. CountCode string `json:"count_code"`
  31. ComboType int `json:"combo_type"`
  32. CountType int `json:"count_type"`
  33. Count int `json:"count"`
  34. DayUsed int `json:"day_used"`
  35. Remain int `json:"remain"`
  36. }
  37. type MangementGetUserMerchantCountCodeReply struct {
  38. UserMerchantCountCode []UserMerchantCountCode `json:"user_merchant_count_code"`
  39. }