CoursePoint

@available(swift 4.0)
public struct CoursePoint

TCX Course Point

  • CoursePoint_t Course Point Name

    Declaration

    Swift

    private(set) public var name: String?
  • Altitude in Meters

    Declaration

    Swift

    private(set) public var altitude: Double?
  • Course Point Type

    Declaration

    Swift

    private(set) public var pointType: CoursePointType
  • Notes

    Declaration

    Swift

    private(set) public var notes: String?
  • Undocumented

    Declaration

    Swift

    public init(name: String?,
                altitude: Double?,
                pointType: CoursePointType,
                notes: String?)
  • Returns a Boolean value indicating whether two values are equal.

    Equality is the inverse of inequality. For any values a and b, a == b implies that a != b is false.

    Declaration

    Swift

    public static func == (lhs: CoursePoint, rhs: CoursePoint) -> Bool

    Parameters

    lhs

    A value to compare.

    rhs

    Another value to compare.

  • Coding Keys

    See more

    Declaration

    Swift

    public enum CodingKeys : String, CodingKey