DescribeCostCategoryDefinitionResponse.fromJson constructor
Implementation
factory DescribeCostCategoryDefinitionResponse.fromJson(
Map<String, dynamic> json) {
return DescribeCostCategoryDefinitionResponse(
costCategory: json['CostCategory'] != null
? CostCategory.fromJson(json['CostCategory'] as Map<String, dynamic>)
: null,
);
}