RefundPaymentRequest
public class RefundPaymentRequest : NSObject, Mappable
options for refunding a payment
-
Amount to be refunded
Declaration
Swift
public var amount: Int?
-
Unique order identifier
Declaration
Swift
public var orderId: String
-
Unique payment identifier
Declaration
Swift
public var paymentId: String
-
Declaration
Swift
public var disablePrinting: Bool
-
Declaration
Swift
public var disableReceiptSelection: Bool
-
if fullRefund is true, the amount will be ignored. If fullRefund is false, the amount must be provided
Declaration
Swift
public var fullRefund: Bool?
-
Declaration
Swift
public init(orderId: String, paymentId: String, amount: Int?, fullRefund: Bool?)
-
Declaration
Swift
public init(orderId: String, paymentId: String, amount: Int)
-
Declaration
Swift
public init(orderId: String, paymentId: String, fullRefund: Bool)