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