Merchant
public enum Merchant : Codable
Quote service fee value.
-
Unique identifier of a merchant assigned by a network for payment processing purposes.
Declaration
Swift
case id(String)
-
Four-digit number listed in ISO 18245 for retail financial services. An MCC is used to classify a business by the types of goods or services it provides.
Declaration
Swift
case categoryCode(String)
-
Creates a new instance by decoding from the given decoder.
Declaration
Swift
public init(from decoder: Decoder) throws
Parameters
decoder
The decoder to read data from.
-
Encodes the instance by encoding to the given decoder.
Declaration
Swift
public func encode(to encoder: Encoder) throws
Parameters
encoder
The encoder to write data to.