StartDocumentClassificationJobResponse.fromJson constructor

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

Implementation

factory StartDocumentClassificationJobResponse.fromJson(
    Map<String, dynamic> json) {
  return StartDocumentClassificationJobResponse(
    jobId: json['JobId'] as String?,
    jobStatus: (json['JobStatus'] as String?)?.toJobStatus(),
  );
}