toJson method

Map<String, dynamic> toJson()

Implementation

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