GoogleCloudDocumentaiV1beta3ProcessResponse.fromJson constructor
GoogleCloudDocumentaiV1beta3ProcessResponse.fromJson(
- Map _json
Implementation
GoogleCloudDocumentaiV1beta3ProcessResponse.fromJson(core.Map _json)
: this(
document: _json.containsKey('document')
? GoogleCloudDocumentaiV1beta3Document.fromJson(
_json['document'] as core.Map<core.String, core.dynamic>)
: null,
humanReviewOperation: _json.containsKey('humanReviewOperation')
? _json['humanReviewOperation'] as core.String
: null,
humanReviewStatus: _json.containsKey('humanReviewStatus')
? GoogleCloudDocumentaiV1beta3HumanReviewStatus.fromJson(
_json['humanReviewStatus']
as core.Map<core.String, core.dynamic>)
: null,
);