toJson method
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,
};
}