POSInformation
Information about the POS
public struct POSInformation : Codable, Equatable, Sendable {
public var name: String
public var vendor: String
public var version: String
public var siteReference: String
public init(name: String, vendor: String, version: String, siteReference: String)
public func encode(to encoder: Encoder) throws
public init(from decoder: Decoder) throws
}
Parameters
name required | String Name of the POS |
vendor required | String POS Vendor |
version required | String POS version number |
siteReference required | String Location of the POS e.g. Sydney |