DescribeMaintenanceStartTimeOutput.fromJson constructor
DescribeMaintenanceStartTimeOutput.fromJson(
- Map<String, dynamic> json
)
Implementation
factory DescribeMaintenanceStartTimeOutput.fromJson(
Map<String, dynamic> json) {
return DescribeMaintenanceStartTimeOutput(
dayOfMonth: json['DayOfMonth'] as int?,
dayOfWeek: json['DayOfWeek'] as int?,
gatewayARN: json['GatewayARN'] as String?,
hourOfDay: json['HourOfDay'] as int?,
minuteOfHour: json['MinuteOfHour'] as int?,
timezone: json['Timezone'] as String?,
);
}