Profile
public struct Profile : Codable, Equatable
Struct representing Host Profile related values.
-
Fistname of the Host.
Declaration
Swift
public var firstName: String
-
Lastname of the Host.
Declaration
Swift
public var lastName: String
-
Email of the Host.
Declaration
Swift
public var email: String
-
Undocumented
Declaration
Swift
public init(firstName: String, lastName: String, email: String)
-
Declaration
Swift
public init(from decoder: Decoder) throws