toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (documentOutputConfig != null)
'documentOutputConfig': documentOutputConfig!.toJson(),
if (inputConfigs != null)
'inputConfigs': inputConfigs!.map((value) => value.toJson()).toList(),
if (inputDocuments != null) 'inputDocuments': inputDocuments!.toJson(),
if (outputConfig != null) 'outputConfig': outputConfig!.toJson(),
if (skipHumanReview != null) 'skipHumanReview': skipHumanReview!,
};