1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- #region Apache License Version 2.0
- #endregion Apache License Version 2.0
- namespace Senparc.Weixin.MP.AdvancedAPIs.Analysis
- {
- public class BaseInterfaceAnalysisResult : BaseAnalysisObject
- {
-
-
-
- public string ref_date { get; set; }
-
-
-
- public int callback_count { get; set; }
-
-
-
- public int fail_count { get; set; }
-
-
-
- public int total_time_cost { get; set; }
-
-
-
- public int max_time_cost { get; set; }
- }
-
-
-
- public class InterfaceSummaryItem : BaseInterfaceAnalysisResult
- {
- }
-
-
-
- public class InterfaceSummaryHourItem : BaseInterfaceAnalysisResult
- {
-
-
-
- public int ref_hour { get; set; }
- }
- }
|