LicenseUser
@objcMembers
class LicenseUser
extension LicenseUser : CVarArg, CustomDebugStringConvertible, CustomStringConvertible, Decodable, Equatable, Hashable, NSObjectProtocol
License user class that encapsulates information about the license user
-
Id of the license user
Declaration
Swift
var id: UInt64
-
License user email address
Declaration
Swift
var email: String?
-
Is the user active
Declaration
Swift
var isActive: Bool
-
License user first name
Declaration
Swift
var firstName: String?
-
License user last name
Declaration
Swift
var lastName: String?
-
License user phone number
Declaration
Swift
var phone: String?
-
Does the user use initial password or already changed the password True if initial password in use and false otherwise
Declaration
Swift
var isInitialPassword: Bool
-
License user initial password
Declaration
Swift
var initialPassword: String?
-
License id of the user’s license
Declaration
Swift
var licenseId: UInt64
-
Store id of the order
Declaration
Swift
var orderStoreId: String?
-
Id of the order
Declaration
Swift
var orderId: UInt64
-
Undocumented
Declaration
Swift
override init()
-
Creates a new instance by decoding from the given decoder.
This initializer throws an error if reading from the decoder fails, or if the data read is corrupted or otherwise invalid.
Declaration
Swift
required init(from decoder: any Decoder) throws