gocardless_pro 3.3.0 → 3.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 472fa55ccac2de3bebc711783644d3f39312330c885b4fbf02a466a039009dc2
|
4
|
+
data.tar.gz: 2fcabb2995c68ef9919c1e6b0a1c98b8d7b3b327dfe8f2b024d99aac00b79f42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c9bb7e031e4fb33eeca2fab1fb6383f4cbb00bb64cac562b5a8b084d1f20ac5ce64d26e71662e2809e21d0b6929dad942963d3418fcb8787ea9a6e44134d3d1
|
7
|
+
data.tar.gz: 6eedaf33f297a6d4560481d1c81f10017cf3894b4b6df483c6945d36cffcd2a6a73590855a0882938d9955893e42456c69134a79d9eb4f8c91d1480831e8c893
|
@@ -238,7 +238,7 @@ module GoCardlessPro
|
|
238
238
|
'User-Agent' => "#{user_agent}",
|
239
239
|
'Content-Type' => 'application/json',
|
240
240
|
'GoCardless-Client-Library' => 'gocardless-pro-ruby',
|
241
|
-
'GoCardless-Client-Version' => '3.
|
241
|
+
'GoCardless-Client-Version' => '3.4.0'
|
242
242
|
}
|
243
243
|
}
|
244
244
|
end
|
@@ -17,7 +17,7 @@ module GoCardlessPro
|
|
17
17
|
# Not all institutions support both Payment Initiation (PIS) and Account
|
18
18
|
# Information (AIS) services.
|
19
19
|
class Institution
|
20
|
-
attr_reader :autocompletes_collect_bank_account, :country_code, :icon_url, :id, :logo_url, :name
|
20
|
+
attr_reader :autocompletes_collect_bank_account, :country_code, :icon_url, :id, :logo_url, :name, :status
|
21
21
|
|
22
22
|
# Initialize a institution resource instance
|
23
23
|
# @param object [Hash] an object returned from the API
|
@@ -30,6 +30,7 @@ module GoCardlessPro
|
|
30
30
|
@id = object['id']
|
31
31
|
@logo_url = object['logo_url']
|
32
32
|
@name = object['name']
|
33
|
+
@status = object['status']
|
33
34
|
@response = response
|
34
35
|
end
|
35
36
|
|