Owner

public struct Owner: Hashable

Represents Owner

  • ID of the owner.

    Declaration

    Swift

    public let typedID: TypedID
  • Access token of the owner.

    Declaration

    Swift

    public let accessToken: String
  • The hash value.

    Declaration

    Swift

    public var hashValue: Int
  • instantiate Owner.

    Declaration

    Swift

    public init(_ typedID: TypedID, accessToken: String)

    Parameters

    typedID

    ID of the Owner.

    accessToken

    Access Token of the Owner.

  • 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 == (left: Owner, right: Owner) -> Bool

    Return Value

    True if left and right is same, otherwise false.