DescribeCostCategoryDefinitionResponse.fromJson constructor

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

Implementation

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