File tree 2 files changed +6
-0
lines changed
Sources/QuickPaySDK/Networking/QuickPay API/QuickPay Link
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -40,5 +40,6 @@ public class QPPayment: Codable {
40
40
public var shipping : QPShipping ?
41
41
public var metadata : QPMetadata ?
42
42
public var link : QPPaymentLink ?
43
+ public var shopsystem : QPShopSystem ?
43
44
44
45
}
Original file line number Diff line number Diff line change @@ -55,13 +55,18 @@ public class QPCreatePaymentParameters: Codable {
55
55
public var shipping : QPShipping ?
56
56
public var invoice_address : QPAddress ?
57
57
public var shipping_address : QPAddress ?
58
+ public var shopSystem : QPShopSystem ?
58
59
59
60
60
61
// MARK: Init
61
62
62
63
public init ( currency: String , order_id: String ) {
63
64
self . currency = currency
64
65
self . order_id = order_id
66
+
67
+ self . shopSystem = QPShopSystem ( )
68
+ self . shopSystem? . name = " iOS-SDK "
69
+ self . shopSystem? . version = " 2.0.0 "
65
70
}
66
71
67
72
}
You can’t perform that action at this time.
0 commit comments