toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final banDurationSec = this.banDurationSec;
final banThreshold = this.banThreshold;
final conformAction = this.conformAction;
final enforceOnKey = this.enforceOnKey;
final enforceOnKeyConfigs = this.enforceOnKeyConfigs;
final enforceOnKeyName = this.enforceOnKeyName;
final exceedAction = this.exceedAction;
final exceedRedirectOptions = this.exceedRedirectOptions;
final rateLimitThreshold = this.rateLimitThreshold;
return {
'banDurationSec': ?banDurationSec,
'banThreshold': ?banThreshold,
'conformAction': ?conformAction,
'enforceOnKey': ?enforceOnKey,
'enforceOnKeyConfigs': ?enforceOnKeyConfigs,
'enforceOnKeyName': ?enforceOnKeyName,
'exceedAction': ?exceedAction,
'exceedRedirectOptions': ?exceedRedirectOptions,
'rateLimitThreshold': ?rateLimitThreshold,
};
}