- package gd_management
- type GetApiThresholdReq struct {
- ApiId int64 `json:"api_id"`
- Type int `json:"type" description:"0 api 1 provider"`
- }
- type GetApiThresholdReply struct {
- WarningEnable bool `json:"warning_enable"`
- ThresholdTimeout int `json:"threshold_timeout"`
- ThresholdFailRate float64 `json:"threshold_fail_rate"`
- ThresholdNorecordRate float64 `json:"threshold_norecord_rage"`
- }
|