Parties
public struct Parties : Codable, Equatable
A party and its corresponding role, including address and contact information if identified.
-
A string that identifies the importance of the party.
See moreDeclaration
Swift
public enum Importance : String -
The normalized form of the party’s name.
Declaration
Swift
public var party: String? -
A string identifying the party’s role.
Declaration
Swift
public var role: String? -
A string that identifies the importance of the party.
Declaration
Swift
public var importance: String? -
A list of the party’s address or addresses.
Declaration
Swift
public var addresses: [Address]? -
A list of the names and roles of contacts identified in the input document.
Declaration
Swift
public var contacts: [Contact]? -
A list of the party’s mentions in the input document.
Declaration
Swift
public var mentions: [Mention]?
View on GitHub
Parties Structure Reference