CompareReturn
public struct CompareReturn : Codable, Equatable
The comparison of the two submitted documents.
-
The analysis model used to compare the input documents. For the Compare two documents method, the only valid value is
contracts.Declaration
Swift
public var modelID: String? -
The version of the analysis model identified by the value of the
model_idkey.Declaration
Swift
public var modelVersion: String? -
Information about the documents being compared.
Declaration
Swift
public var documents: [Document]? -
A list of pairs of elements that semantically align between the compared documents.
Declaration
Swift
public var alignedElements: [AlignedElement]? -
A list of elements that do not semantically align between the compared documents.
Declaration
Swift
public var unalignedElements: [UnalignedElement]?
View on GitHub
CompareReturn Structure Reference