Owner
public struct Owner : Hashable
Representation of an Owner object from the Email Service.
This represents the relationship of a unique identifier (id
) with the issuer
.
-
Unique Identifier of the owner.
Declaration
Swift
public let id: String
-
Issuer of the owner.
Declaration
Swift
public let issuer: String
-
Initialize an instance of
Owner
.Declaration
Swift
public init(id: String, issuer: String)