OriginalLabelsIn

public struct OriginalLabelsIn : Codable, Equatable

The original labeling from the input document, without the submitted feedback.

  • Description of the action specified by the element and whom it affects.

    Declaration

    Swift

    public var types: [TypeLabel]
  • List of functional categories into which the element falls; in other words, the subject matter of the element.

    Declaration

    Swift

    public var categories: [Category]
  • Initialize a OriginalLabelsIn with member variables.

    Declaration

    Swift

    public init(
        types: [TypeLabel],
        categories: [Category]
    )

    Parameters

    types

    Description of the action specified by the element and whom it affects.

    categories

    List of functional categories into which the element falls; in other words, the subject matter of the element.

    Return Value

    An initialized OriginalLabelsIn.