RuntimeEntityRole

public struct RuntimeEntityRole : Codable, Equatable

An object describing the role played by a system entity that is specifies the beginning or end of a range recognized in the user input. This property is included only if the new system entities are enabled for the workspace.

  • The relationship of the entity to the range.

    See more

    Declaration

    Swift

    public enum TypeEnum : String
  • The relationship of the entity to the range.

    Declaration

    Swift

    public var type: String?
  • Initialize a RuntimeEntityRole with member variables.

    Declaration

    Swift

    public init(
        type: String? = nil
    )

    Parameters

    type

    The relationship of the entity to the range.

    Return Value

    An initialized RuntimeEntityRole.