toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final coolingThresholdDays = this.coolingThresholdDays;
  final hotTierBypassModeEnabled = this.hotTierBypassModeEnabled;
  final tierAction = this.tierAction;
  return {
    'coolingThresholdDays': ?coolingThresholdDays,
    'hotTierBypassModeEnabled': ?hotTierBypassModeEnabled,
    'tierAction': ?tierAction,
  };
}