DescribeConfigurationRevisionResponse.fromJson constructor

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

Implementation

factory DescribeConfigurationRevisionResponse.fromJson(
    Map<String, dynamic> json) {
  return DescribeConfigurationRevisionResponse(
    configurationId: json['configurationId'] as String?,
    created: timeStampFromJson(json['created']),
    data: json['data'] as String?,
    description: json['description'] as String?,
  );
}