DescribeComponentConfigurationResponse.fromJson constructor

DescribeComponentConfigurationResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DescribeComponentConfigurationResponse.fromJson(
    Map<String, dynamic> json) {
  return DescribeComponentConfigurationResponse(
    componentConfiguration: json['ComponentConfiguration'] as String?,
    monitor: json['Monitor'] as bool?,
    tier: (json['Tier'] as String?)?.toTier(),
  );
}