DeleteEvaluationOutput.fromJson constructor

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

Implementation

factory DeleteEvaluationOutput.fromJson(Map<String, dynamic> json) {
  return DeleteEvaluationOutput(
    evaluationId: json['EvaluationId'] as String?,
  );
}