mastercard_p2m 1.0.3 → 1.0.4
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 +4 -4
- data/lib/mastercard/api/p2m/digitalaccountreferencenumber.rb +2 -2
- data/lib/mastercard/api/p2m/digitalaccountreferencenumberretrieval.rb +2 -2
- data/lib/mastercard/api/p2m/{merchantfunding.rb → funding.rb} +5 -5
- data/lib/mastercard/api/p2m/fundingreversal.rb +86 -0
- data/lib/mastercard/api/p2m/merchantrefund.rb +2 -2
- data/lib/mastercard/api/p2m/merchantretrieval.rb +4 -4
- data/lib/mastercard/api/p2m/merchanttransferfundingandpayment.rb +2 -2
- data/lib/mastercard/api/p2m/merchanttransferpayment.rb +2 -2
- data/lib/mastercard/api/p2m/resourceconfig.rb +1 -1
- data/lib/mastercard/api/p2m/testpaymentnotification.rb +2 -2
- data/lib/mastercard/api/p2m/testrefundnotification.rb +2 -2
- data/lib/mastercard/api/p2m/transfernotification.rb +2 -2
- data/lib/mastercard/api/p2m/transfernotificationregistration.rb +61 -21
- data/lib/mastercard_p2m.rb +2 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 31d3a0b0e02ba5e1e26f287f6108297dc69be1d825767fcbcee9606b4aaf6ba8
|
4
|
+
data.tar.gz: 782db1b408103d2ba17afa1fbaba7120e805d9e39ac16c2702d058c7e15ab91e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f0f855fa41bff2f5b6f64975f7376e5769f3a1dfcf7755a746033d0e4f740f6241cf00c4c9d4a7ddd6684e4c050144ca3b472f62e6c114f285dfa19e27cc941
|
7
|
+
data.tar.gz: eea744a6edf55ee5b42751f382ede70e82dd5ef285edc09abde2c926c02286a77da2cf3b0905baa907ab8f0650965e5a2bbc4cc73dd588bd8c6bc257707b7520
|
@@ -37,7 +37,7 @@ module MasterCard
|
|
37
37
|
#
|
38
38
|
|
39
39
|
@__store = {
|
40
|
-
'
|
40
|
+
'5f0cc3d5-e7e6-4ecd-b69a-1d30c9e5d9bb' => OperationConfig.new("/send/v1/{partnerId}/digital-account", "create", [], []),
|
41
41
|
|
42
42
|
}
|
43
43
|
|
@@ -64,7 +64,7 @@ module MasterCard
|
|
64
64
|
#@param Dict mapObj, containing the required parameters to create a new object
|
65
65
|
#@return [DigitalAccountReferenceNumber] of the response of created instance.
|
66
66
|
#@raise [APIException] an exception from the response status
|
67
|
-
return self.execute("
|
67
|
+
return self.execute("5f0cc3d5-e7e6-4ecd-b69a-1d30c9e5d9bb", DigitalAccountReferenceNumber.new(mapObj))
|
68
68
|
end
|
69
69
|
|
70
70
|
|
@@ -37,7 +37,7 @@ module MasterCard
|
|
37
37
|
#
|
38
38
|
|
39
39
|
@__store = {
|
40
|
-
'
|
40
|
+
'4fa3bc1d-a7ee-4d0e-92ac-db05572ebc81' => OperationConfig.new("/send/v1/{partnerId}/digital-account/search", "create", [], []),
|
41
41
|
|
42
42
|
}
|
43
43
|
|
@@ -64,7 +64,7 @@ module MasterCard
|
|
64
64
|
#@param Dict mapObj, containing the required parameters to create a new object
|
65
65
|
#@return [DigitalAccountReferenceNumberRetrieval] of the response of created instance.
|
66
66
|
#@raise [APIException] an exception from the response status
|
67
|
-
return self.execute("
|
67
|
+
return self.execute("4fa3bc1d-a7ee-4d0e-92ac-db05572ebc81", DigitalAccountReferenceNumberRetrieval.new(mapObj))
|
68
68
|
end
|
69
69
|
|
70
70
|
|
@@ -32,12 +32,12 @@ require "mastercard/core/baseobject"
|
|
32
32
|
module MasterCard
|
33
33
|
module API
|
34
34
|
module P2m
|
35
|
-
class
|
35
|
+
class Funding < MasterCard::Core::Model::BaseObject
|
36
36
|
include MasterCard::Core::Model
|
37
37
|
#
|
38
38
|
|
39
39
|
@__store = {
|
40
|
-
'
|
40
|
+
'589a23fa-1b4c-43c2-89e6-f96aedf4a3bb' => OperationConfig.new("/send/v1/partners/{partnerId}/transfers/funding", "create", [], []),
|
41
41
|
|
42
42
|
}
|
43
43
|
|
@@ -59,12 +59,12 @@ module MasterCard
|
|
59
59
|
|
60
60
|
def self.create(mapObj)
|
61
61
|
#
|
62
|
-
#Creates object of type
|
62
|
+
#Creates object of type Funding
|
63
63
|
#
|
64
64
|
#@param Dict mapObj, containing the required parameters to create a new object
|
65
|
-
#@return [
|
65
|
+
#@return [Funding] of the response of created instance.
|
66
66
|
#@raise [APIException] an exception from the response status
|
67
|
-
return self.execute("
|
67
|
+
return self.execute("589a23fa-1b4c-43c2-89e6-f96aedf4a3bb", Funding.new(mapObj))
|
68
68
|
end
|
69
69
|
|
70
70
|
|
@@ -0,0 +1,86 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (c) 2016 MasterCard International Incorporated
|
3
|
+
# All rights reserved.
|
4
|
+
#
|
5
|
+
# Redistribution and use in source and binary forms, with or without modification, are
|
6
|
+
# permitted provided that the following conditions are met:
|
7
|
+
#
|
8
|
+
# Redistributions of source code must retain the above copyright notice, this list of
|
9
|
+
# conditions and the following disclaimer.
|
10
|
+
# Redistributions in binary form must reproduce the above copyright notice, this list of
|
11
|
+
# conditions and the following disclaimer in the documentation and/or other materials
|
12
|
+
# provided with the distribution.
|
13
|
+
# Neither the name of the MasterCard International Incorporated nor the names of its
|
14
|
+
# contributors may be used to endorse or promote products derived from this software
|
15
|
+
# without specific prior written permission.
|
16
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
17
|
+
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
18
|
+
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
19
|
+
# SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
20
|
+
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
21
|
+
# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
22
|
+
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
|
23
|
+
# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
24
|
+
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
25
|
+
# SUCH DAMAGE.
|
26
|
+
#
|
27
|
+
|
28
|
+
|
29
|
+
require "mastercard/core/model"
|
30
|
+
require "mastercard/core/baseobject"
|
31
|
+
|
32
|
+
module MasterCard
|
33
|
+
module API
|
34
|
+
module P2m
|
35
|
+
class FundingReversal < MasterCard::Core::Model::BaseObject
|
36
|
+
include MasterCard::Core::Model
|
37
|
+
#
|
38
|
+
|
39
|
+
@__store = {
|
40
|
+
'183f01f4-7606-412d-84c4-7cd9a0cffc3b' => OperationConfig.new("/send/v1/partners/{partner-id}/transfers/{transfer-id}/transactions/{transaction-id}/reversals", "create", [], []),
|
41
|
+
|
42
|
+
}
|
43
|
+
|
44
|
+
protected
|
45
|
+
|
46
|
+
def self.getOperationConfig(operationUUID)
|
47
|
+
if @__store.key?(operationUUID)
|
48
|
+
return @__store[operationUUID]
|
49
|
+
end
|
50
|
+
raise NotImplementedError.new("Invalid operationUUID supplied:"+ operationUUID)
|
51
|
+
end
|
52
|
+
|
53
|
+
def self.getOperationMetadata()
|
54
|
+
return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext(), ResourceConfig.instance.getJsonNative(), ResourceConfig.instance.getContentTypeOverride())
|
55
|
+
end
|
56
|
+
|
57
|
+
public
|
58
|
+
|
59
|
+
|
60
|
+
def self.create(mapObj)
|
61
|
+
#
|
62
|
+
#Creates object of type FundingReversal
|
63
|
+
#
|
64
|
+
#@param Dict mapObj, containing the required parameters to create a new object
|
65
|
+
#@return [FundingReversal] of the response of created instance.
|
66
|
+
#@raise [APIException] an exception from the response status
|
67
|
+
return self.execute("183f01f4-7606-412d-84c4-7cd9a0cffc3b", FundingReversal.new(mapObj))
|
68
|
+
end
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
|
86
|
+
|
@@ -37,7 +37,7 @@ module MasterCard
|
|
37
37
|
#
|
38
38
|
|
39
39
|
@__store = {
|
40
|
-
'
|
40
|
+
'35ba7f9a-3d36-450a-abee-9367aedae29f' => OperationConfig.new("/send/#env/v1/partners/{partnerId}/merchant/transfers/refund", "create", [], []),
|
41
41
|
|
42
42
|
}
|
43
43
|
|
@@ -64,7 +64,7 @@ module MasterCard
|
|
64
64
|
#@param Dict mapObj, containing the required parameters to create a new object
|
65
65
|
#@return [MerchantRefund] of the response of created instance.
|
66
66
|
#@raise [APIException] an exception from the response status
|
67
|
-
return self.execute("
|
67
|
+
return self.execute("35ba7f9a-3d36-450a-abee-9367aedae29f", MerchantRefund.new(mapObj))
|
68
68
|
end
|
69
69
|
|
70
70
|
|
@@ -37,8 +37,8 @@ module MasterCard
|
|
37
37
|
#
|
38
38
|
|
39
39
|
@__store = {
|
40
|
-
'
|
41
|
-
'
|
40
|
+
'5e127ed8-e13b-4ff8-b42a-2c0816ff340a' => OperationConfig.new("/send/#env/v1/partners/{partnerId}/merchant/transfers/{transferId}", "read", [], []),
|
41
|
+
'a7535260-8b88-47de-b399-d001dd782487' => OperationConfig.new("/send/#env/v1/partners/{partnerId}/merchant/transfers", "query", [], ["ref"]),
|
42
42
|
|
43
43
|
}
|
44
44
|
|
@@ -82,7 +82,7 @@ module MasterCard
|
|
82
82
|
end
|
83
83
|
end
|
84
84
|
|
85
|
-
return self.execute("
|
85
|
+
return self.execute("5e127ed8-e13b-4ff8-b42a-2c0816ff340a",MerchantRetrieval.new(mapObj))
|
86
86
|
end
|
87
87
|
|
88
88
|
|
@@ -100,7 +100,7 @@ module MasterCard
|
|
100
100
|
#@raise [APIException] an exception from the response status
|
101
101
|
#
|
102
102
|
|
103
|
-
return self.execute("
|
103
|
+
return self.execute("a7535260-8b88-47de-b399-d001dd782487",MerchantRetrieval.new(criteria))
|
104
104
|
end
|
105
105
|
|
106
106
|
|
@@ -37,7 +37,7 @@ module MasterCard
|
|
37
37
|
#
|
38
38
|
|
39
39
|
@__store = {
|
40
|
-
'
|
40
|
+
'3267dacc-ea11-4e84-9193-cdc18817a147' => OperationConfig.new("/send/#env/v1/partners/{partnerId}/merchant/transfer", "create", [], []),
|
41
41
|
|
42
42
|
}
|
43
43
|
|
@@ -64,7 +64,7 @@ module MasterCard
|
|
64
64
|
#@param Dict mapObj, containing the required parameters to create a new object
|
65
65
|
#@return [MerchantTransferFundingAndPayment] of the response of created instance.
|
66
66
|
#@raise [APIException] an exception from the response status
|
67
|
-
return self.execute("
|
67
|
+
return self.execute("3267dacc-ea11-4e84-9193-cdc18817a147", MerchantTransferFundingAndPayment.new(mapObj))
|
68
68
|
end
|
69
69
|
|
70
70
|
|
@@ -37,7 +37,7 @@ module MasterCard
|
|
37
37
|
#
|
38
38
|
|
39
39
|
@__store = {
|
40
|
-
'
|
40
|
+
'7b9524b0-21a4-4245-9a9a-e229d2160400' => OperationConfig.new("/send/#env/v1/partners/{partnerId}/merchant/transfers/payment", "create", [], []),
|
41
41
|
|
42
42
|
}
|
43
43
|
|
@@ -64,7 +64,7 @@ module MasterCard
|
|
64
64
|
#@param Dict mapObj, containing the required parameters to create a new object
|
65
65
|
#@return [MerchantTransferPayment] of the response of created instance.
|
66
66
|
#@raise [APIException] an exception from the response status
|
67
|
-
return self.execute("
|
67
|
+
return self.execute("7b9524b0-21a4-4245-9a9a-e229d2160400", MerchantTransferPayment.new(mapObj))
|
68
68
|
end
|
69
69
|
|
70
70
|
|
@@ -37,7 +37,7 @@ module MasterCard
|
|
37
37
|
#
|
38
38
|
|
39
39
|
@__store = {
|
40
|
-
'
|
40
|
+
'15a436ad-2205-4d9b-b34e-6fd9350067c6' => OperationConfig.new("/send/v1/partners/{partnerId}/events/generate/payment", "create", [], []),
|
41
41
|
|
42
42
|
}
|
43
43
|
|
@@ -64,7 +64,7 @@ module MasterCard
|
|
64
64
|
#@param Dict mapObj, containing the required parameters to create a new object
|
65
65
|
#@return [TestPaymentNotification] of the response of created instance.
|
66
66
|
#@raise [APIException] an exception from the response status
|
67
|
-
return self.execute("
|
67
|
+
return self.execute("15a436ad-2205-4d9b-b34e-6fd9350067c6", TestPaymentNotification.new(mapObj))
|
68
68
|
end
|
69
69
|
|
70
70
|
|
@@ -37,7 +37,7 @@ module MasterCard
|
|
37
37
|
#
|
38
38
|
|
39
39
|
@__store = {
|
40
|
-
'
|
40
|
+
'd79de7aa-9a24-4ffb-8e20-5dde38f843ac' => OperationConfig.new("/send/v1/partners/{partnerId}/events/generate/refund", "create", [], []),
|
41
41
|
|
42
42
|
}
|
43
43
|
|
@@ -64,7 +64,7 @@ module MasterCard
|
|
64
64
|
#@param Dict mapObj, containing the required parameters to create a new object
|
65
65
|
#@return [TestRefundNotification] of the response of created instance.
|
66
66
|
#@raise [APIException] an exception from the response status
|
67
|
-
return self.execute("
|
67
|
+
return self.execute("d79de7aa-9a24-4ffb-8e20-5dde38f843ac", TestRefundNotification.new(mapObj))
|
68
68
|
end
|
69
69
|
|
70
70
|
|
@@ -37,7 +37,7 @@ module MasterCard
|
|
37
37
|
#
|
38
38
|
|
39
39
|
@__store = {
|
40
|
-
'
|
40
|
+
'51df9313-b6a7-4db7-b337-f96731945299' => OperationConfig.new("/inbound/notification/v1/", "create", [], []),
|
41
41
|
|
42
42
|
}
|
43
43
|
|
@@ -64,7 +64,7 @@ module MasterCard
|
|
64
64
|
#@param Dict mapObj, containing the required parameters to create a new object
|
65
65
|
#@return [TransferNotification] of the response of created instance.
|
66
66
|
#@raise [APIException] an exception from the response status
|
67
|
-
return self.execute("
|
67
|
+
return self.execute("51df9313-b6a7-4db7-b337-f96731945299", TransferNotification.new(mapObj))
|
68
68
|
end
|
69
69
|
|
70
70
|
|
@@ -37,10 +37,10 @@ module MasterCard
|
|
37
37
|
#
|
38
38
|
|
39
39
|
@__store = {
|
40
|
-
'
|
41
|
-
'
|
42
|
-
'
|
43
|
-
'
|
40
|
+
'b58b7fee-95fc-42f0-b7ad-e67d3c01c7fc' => OperationConfig.new("/send/v1/partners/{partnerId}/notification-registries", "create", [], []),
|
41
|
+
'4752e3ed-e554-4c72-bfc2-82035dba69de' => OperationConfig.new("/send/v1/partners/{partnerId}/notification-registries/{account-reg-ref}", "delete", [], []),
|
42
|
+
'9e7e46f3-b69b-49eb-b8a7-1e70bb724975' => OperationConfig.new("/send/v1/partners/{partnerId}/notification-registries/{account-reg-ref}", "read", [], []),
|
43
|
+
'70f3aff4-7309-4e8c-ab8c-dbc42d9ace61' => OperationConfig.new("/send/v1/partners/{partnerId}/notification-registries/{account-reg-ref}", "update", [], []),
|
44
44
|
|
45
45
|
}
|
46
46
|
|
@@ -67,7 +67,7 @@ module MasterCard
|
|
67
67
|
#@param Dict mapObj, containing the required parameters to create a new object
|
68
68
|
#@return [TransferNotificationRegistration] of the response of created instance.
|
69
69
|
#@raise [APIException] an exception from the response status
|
70
|
-
return self.execute("
|
70
|
+
return self.execute("b58b7fee-95fc-42f0-b7ad-e67d3c01c7fc", TransferNotificationRegistration.new(mapObj))
|
71
71
|
end
|
72
72
|
|
73
73
|
|
@@ -76,30 +76,44 @@ module MasterCard
|
|
76
76
|
|
77
77
|
|
78
78
|
|
79
|
-
def self.delete(mapObj)
|
80
|
-
#
|
81
|
-
#Creates object of type TransferNotificationRegistration
|
82
|
-
#
|
83
|
-
#@param Dict mapObj, containing the required parameters to create a new object
|
84
|
-
#@return [TransferNotificationRegistration] of the response of created instance.
|
85
|
-
#@raise [APIException] an exception from the response status
|
86
|
-
return self.execute("8375efb7-6a71-4d51-9e62-3c4127cb8ec4", TransferNotificationRegistration.new(mapObj))
|
87
|
-
end
|
88
79
|
|
89
80
|
|
90
81
|
|
82
|
+
def self.deleteById(id, map = nil)
|
83
|
+
#Delete object of type TransferNotificationRegistration by id
|
84
|
+
|
85
|
+
#@param [String] id
|
86
|
+
#@param [Dict] map, containing additional parameters
|
87
|
+
#@return [TransferNotificationRegistration] of the response of the deleted instance.
|
88
|
+
#@raise [APIException] an exception from the response status
|
89
|
+
|
91
90
|
|
91
|
+
mapObj = TransferNotificationRegistration.new
|
92
|
+
if !(id.nil? || id.to_s.empty?)
|
93
|
+
mapObj.set("id", id)
|
94
|
+
end
|
95
|
+
if !map.nil?
|
96
|
+
if map.instance_of? RequestMap
|
97
|
+
mapObj.setAll(map.getObject())
|
98
|
+
else
|
99
|
+
mapObj.setAll(map)
|
100
|
+
end
|
101
|
+
end
|
92
102
|
|
103
|
+
return self.execute("4752e3ed-e554-4c72-bfc2-82035dba69de", mapObj)
|
104
|
+
end
|
93
105
|
|
94
106
|
|
95
|
-
def
|
96
|
-
#
|
97
|
-
#Creates object of type TransferNotificationRegistration
|
107
|
+
def delete
|
98
108
|
#
|
99
|
-
|
100
|
-
|
109
|
+
#Delete object of type TransferNotificationRegistration
|
110
|
+
|
111
|
+
#@param [String] id
|
112
|
+
#@return [TransferNotificationRegistration] of the response of the deleted instance.
|
101
113
|
#@raise [APIException] an exception from the response status
|
102
|
-
|
114
|
+
#
|
115
|
+
|
116
|
+
return self.class.execute("4752e3ed-e554-4c72-bfc2-82035dba69de", self)
|
103
117
|
end
|
104
118
|
|
105
119
|
|
@@ -109,6 +123,32 @@ module MasterCard
|
|
109
123
|
|
110
124
|
|
111
125
|
|
126
|
+
def self.readby(id, criteria = nil)
|
127
|
+
#
|
128
|
+
#Returns objects of type TransferNotificationRegistration by id and optional criteria
|
129
|
+
#@param [String] id
|
130
|
+
#@param [Dict] criteria
|
131
|
+
#@return [TransferNotificationRegistration] object representing the response
|
132
|
+
#@raise [APIException] an exception from the response status
|
133
|
+
|
134
|
+
mapObj = TransferNotificationRegistration.new
|
135
|
+
if !(id.nil? || id.to_s.empty?)
|
136
|
+
mapObj.set("id", id)
|
137
|
+
end
|
138
|
+
if !criteria.nil?
|
139
|
+
if criteria.instance_of? RequestMap
|
140
|
+
mapObj.setAll(criteria.getObject())
|
141
|
+
else
|
142
|
+
mapObj.setAll(criteria)
|
143
|
+
end
|
144
|
+
end
|
145
|
+
|
146
|
+
return self.execute("9e7e46f3-b69b-49eb-b8a7-1e70bb724975",TransferNotificationRegistration.new(mapObj))
|
147
|
+
end
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
|
112
152
|
def update
|
113
153
|
#
|
114
154
|
#Updates an object of type TransferNotificationRegistration
|
@@ -116,7 +156,7 @@ module MasterCard
|
|
116
156
|
#@return [TransferNotificationRegistration] object representing the response.
|
117
157
|
#@raise [APIException] an exception from the response status
|
118
158
|
#
|
119
|
-
return self.class.execute("
|
159
|
+
return self.class.execute("70f3aff4-7309-4e8c-ab8c-dbc42d9ace61",self)
|
120
160
|
end
|
121
161
|
|
122
162
|
|
data/lib/mastercard_p2m.rb
CHANGED
@@ -4,7 +4,8 @@ require 'mastercard/api/p2m/resourceconfig'
|
|
4
4
|
|
5
5
|
require 'mastercard/api/p2m/digitalaccountreferencenumber'
|
6
6
|
require 'mastercard/api/p2m/digitalaccountreferencenumberretrieval'
|
7
|
-
require 'mastercard/api/p2m/
|
7
|
+
require 'mastercard/api/p2m/funding'
|
8
|
+
require 'mastercard/api/p2m/fundingreversal'
|
8
9
|
require 'mastercard/api/p2m/merchantrefund'
|
9
10
|
require 'mastercard/api/p2m/merchantretrieval'
|
10
11
|
require 'mastercard/api/p2m/merchanttransferfundingandpayment'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mastercard_p2m
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MasterCard Worldwide
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mastercard_api_core
|
@@ -53,7 +53,8 @@ extra_rdoc_files: []
|
|
53
53
|
files:
|
54
54
|
- lib/mastercard/api/p2m/digitalaccountreferencenumber.rb
|
55
55
|
- lib/mastercard/api/p2m/digitalaccountreferencenumberretrieval.rb
|
56
|
-
- lib/mastercard/api/p2m/
|
56
|
+
- lib/mastercard/api/p2m/funding.rb
|
57
|
+
- lib/mastercard/api/p2m/fundingreversal.rb
|
57
58
|
- lib/mastercard/api/p2m/merchantrefund.rb
|
58
59
|
- lib/mastercard/api/p2m/merchantretrieval.rb
|
59
60
|
- lib/mastercard/api/p2m/merchanttransferfundingandpayment.rb
|