ScalingScheduleStatus.fromJson constructor

ScalingScheduleStatus.fromJson(
  1. Map json_
)

Implementation

ScalingScheduleStatus.fromJson(core.Map json_)
    : this(
        lastStartTime: json_['lastStartTime'] as core.String?,
        nextStartTime: json_['nextStartTime'] as core.String?,
        state: json_['state'] as core.String?,
      );