PutConfigurationAggregatorResponse.fromJson constructor

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

Implementation

factory PutConfigurationAggregatorResponse.fromJson(
    Map<String, dynamic> json) {
  return PutConfigurationAggregatorResponse(
    configurationAggregator: json['ConfigurationAggregator'] != null
        ? ConfigurationAggregator.fromJson(
            json['ConfigurationAggregator'] as Map<String, dynamic>)
        : null,
  );
}