Skip to content

Commit a554bc6

Browse files
authored
Merge pull request #70 from pokepay/fix/bankpay
Fix despositType to String
2 parents 072e17f + 07c42a0 commit a554bc6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Pokepay.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Pokepay"
3-
s.version = "2.0.6"
3+
s.version = "2.0.7"
44
s.summary = "Pokepay iOS SDK."
55
s.description = <<-DESC
66
iOS SDK for Pokepay written in Swift.

Pokepay.xcodeproj/Pokepay_Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.0.6</string>
18+
<string>2.0.7</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Sources/Pokepay/Responses/BankPay.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public struct BankPay: Codable {
66
public let bankCode: String
77
public let branchNumber: String
88
public let branchName: String
9-
public let depositType: Int32
9+
public let depositType: String
1010
public let maskedAccountNumber: String
1111
public let accountName: String
1212
public let privateMoneyId: String?

0 commit comments

Comments
 (0)