DeleteCostCategoryDefinitionResponse.fromJson constructor

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

Implementation

factory DeleteCostCategoryDefinitionResponse.fromJson(
    Map<String, dynamic> json) {
  return DeleteCostCategoryDefinitionResponse(
    costCategoryArn: json['CostCategoryArn'] as String?,
    effectiveEnd: json['EffectiveEnd'] as String?,
  );
}