UpdateCostCategoryDefinitionResponse.fromJson constructor
Implementation
factory UpdateCostCategoryDefinitionResponse.fromJson(
Map<String, dynamic> json) {
return UpdateCostCategoryDefinitionResponse(
costCategoryArn: json['CostCategoryArn'] as String?,
effectiveStart: json['EffectiveStart'] as String?,
);
}