TieringPolicy.fromJson constructor

TieringPolicy.fromJson(
  1. Map json_
)

Implementation

TieringPolicy.fromJson(core.Map json_)
  : this(
      coolingThresholdDays: json_['coolingThresholdDays'] as core.int?,
      hotTierBypassModeEnabled:
          json_['hotTierBypassModeEnabled'] as core.bool?,
      tierAction: json_['tierAction'] as core.String?,
    );