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
typedIDID of the Owner.
accessTokenAccess Token of the Owner.
-
Returns a Boolean value indicating whether two values are equal.
Equality is the inverse of inequality. For any values
aandb,a == bimplies thata != bisfalse.Declaration
Swift
public static func == (left: Owner, right: Owner) -> BoolReturn Value
True if left and right is same, otherwise false.
View on GitHub
Owner Struct Reference