host.go 548 B

12345678910111213141516171819202122232425262728293031
  1. package v1
  2. type HostConfigOption struct {
  3. RelID int
  4. ConfigID int
  5. OptionID int
  6. }
  7. type ProductConfigOption struct {
  8. ID int
  9. OptionName string
  10. }
  11. type ProductConfigOptionSub struct {
  12. ID int
  13. OptionName string
  14. }
  15. type GameShieldHostBackendConfigResponse struct {
  16. RuleEntriesCount int64
  17. SourceMachinesCount int64
  18. MaxBandwidthCount int64
  19. OnlineDevicesCount int64
  20. }
  21. type GlobalLimitConfigResponse struct {
  22. MaxBytesMonth string `default:"0"`
  23. Bps string `default:"0"`
  24. PortCount int
  25. DomainCount int
  26. }