Build

@available(swift 4.0)
public struct Build

TCX Build Information

  • Version

    Declaration

    Swift

    private(set) public var version: Version
  • Time application was Built

    A string containing the date and time when an application was built. Note that this is not an xsd:dateTime type because this string is generated by the compiler and cannot be readily converted to the xsd:dateTime format.

    Declaration

    Swift

    private(set) public var time: String?
  • The login name of the engineer who created this build

    Declaration

    Swift

    private(set) public var builder: String?
  • Build Type

    Declaration

    Swift

    private(set) public var type: BuildType?
  • Undocumented

    Declaration

    Swift

    public init(version: Version,
                time: String?,
                builder: String?,
                type: BuildType?)
  • 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: Build, rhs: Build) -> Bool

    Parameters

    lhs

    A value to compare.

    rhs

    Another value to compare.

  • Coding Keys

    See more

    Declaration

    Swift

    public enum CodingKeys : String, CodingKey