mastercard_match 1.0.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 +7 -0
- data/lib/mastercard/api/match/acquirercontactrequest.rb +110 -0
- data/lib/mastercard/api/match/addterminatedmerchant.rb +110 -0
- data/lib/mastercard/api/match/retroactiveinquirydetailsrequest.rb +110 -0
- data/lib/mastercard/api/match/retroactiveinquiryrequest.rb +110 -0
- data/lib/mastercard/api/match/terminationinquiryhistoryrequest.rb +112 -0
- data/lib/mastercard/api/match/terminationinquiryrequest.rb +110 -0
- data/lib/mastercard_match.rb +7 -0
- metadata +85 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: ac46492e8dbf62f4179216e27b3244341b9a8922
|
4
|
+
data.tar.gz: 6cb1d86f0d5f739e2293a20e77fe999d27c1dbbc
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 52bbcbbde2382ad37cec6b3ddd1e84d04efdfea28e1357ecfd3c5210b3834f1f45c82efe5b15790b524dbb056dfc19c02d1c680753b3909712ac0bac4611036d
|
7
|
+
data.tar.gz: b0bfc58229644dbe05672705eaaabdb5f2874518ef161748b66f90c0b7664c125c38e046ccb725d9ee15672da1d6eb013bdc021b98a69550b59ac263457a7296
|
@@ -0,0 +1,110 @@
|
|
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
|
+
|
31
|
+
module MasterCard
|
32
|
+
module API
|
33
|
+
module Match
|
34
|
+
include MasterCard::Core::Model
|
35
|
+
class AcquirerContactRequest < BaseObject
|
36
|
+
#
|
37
|
+
|
38
|
+
def getResourcePath(action)
|
39
|
+
#Returns the resource path based on the action
|
40
|
+
#@return str
|
41
|
+
|
42
|
+
action = action.upcase
|
43
|
+
|
44
|
+
if action == "CREATE"
|
45
|
+
return "/fraud/merchant/v3/common/contact-details"
|
46
|
+
end
|
47
|
+
|
48
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
49
|
+
|
50
|
+
end
|
51
|
+
|
52
|
+
def getHeaderParams(action)
|
53
|
+
#Returns a list containing header params
|
54
|
+
#@return list
|
55
|
+
action = action.upcase
|
56
|
+
|
57
|
+
if action == "CREATE"
|
58
|
+
return []
|
59
|
+
end
|
60
|
+
|
61
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
62
|
+
end
|
63
|
+
|
64
|
+
def getQueryParams(action)
|
65
|
+
#Returns a list containing query params
|
66
|
+
#@return list
|
67
|
+
action = action.upcase
|
68
|
+
|
69
|
+
if action == "CREATE"
|
70
|
+
return []
|
71
|
+
end
|
72
|
+
|
73
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
74
|
+
end
|
75
|
+
|
76
|
+
def self.getApiVersion
|
77
|
+
return "1.0.0"
|
78
|
+
end
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
def self.create(mapObj)
|
84
|
+
#
|
85
|
+
#Creates object of type AcquirerContactRequest
|
86
|
+
#
|
87
|
+
#@param Dict mapObj, containing the required parameters to create a new object
|
88
|
+
#@return AcquirerContactRequest of the response of created instance.
|
89
|
+
#
|
90
|
+
return self.createObject(AcquirerContactRequest.new(mapObj))
|
91
|
+
end
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
@@ -0,0 +1,110 @@
|
|
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
|
+
|
31
|
+
module MasterCard
|
32
|
+
module API
|
33
|
+
module Match
|
34
|
+
include MasterCard::Core::Model
|
35
|
+
class AddTerminatedMerchant < BaseObject
|
36
|
+
#
|
37
|
+
|
38
|
+
def getResourcePath(action)
|
39
|
+
#Returns the resource path based on the action
|
40
|
+
#@return str
|
41
|
+
|
42
|
+
action = action.upcase
|
43
|
+
|
44
|
+
if action == "CREATE"
|
45
|
+
return "/fraud/merchant/v3/add-merchant"
|
46
|
+
end
|
47
|
+
|
48
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
49
|
+
|
50
|
+
end
|
51
|
+
|
52
|
+
def getHeaderParams(action)
|
53
|
+
#Returns a list containing header params
|
54
|
+
#@return list
|
55
|
+
action = action.upcase
|
56
|
+
|
57
|
+
if action == "CREATE"
|
58
|
+
return []
|
59
|
+
end
|
60
|
+
|
61
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
62
|
+
end
|
63
|
+
|
64
|
+
def getQueryParams(action)
|
65
|
+
#Returns a list containing query params
|
66
|
+
#@return list
|
67
|
+
action = action.upcase
|
68
|
+
|
69
|
+
if action == "CREATE"
|
70
|
+
return []
|
71
|
+
end
|
72
|
+
|
73
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
74
|
+
end
|
75
|
+
|
76
|
+
def self.getApiVersion
|
77
|
+
return "1.0.0"
|
78
|
+
end
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
def self.create(mapObj)
|
84
|
+
#
|
85
|
+
#Creates object of type AddTerminatedMerchant
|
86
|
+
#
|
87
|
+
#@param Dict mapObj, containing the required parameters to create a new object
|
88
|
+
#@return AddTerminatedMerchant of the response of created instance.
|
89
|
+
#
|
90
|
+
return self.createObject(AddTerminatedMerchant.new(mapObj))
|
91
|
+
end
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
@@ -0,0 +1,110 @@
|
|
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
|
+
|
31
|
+
module MasterCard
|
32
|
+
module API
|
33
|
+
module Match
|
34
|
+
include MasterCard::Core::Model
|
35
|
+
class RetroactiveInquiryDetailsRequest < BaseObject
|
36
|
+
#
|
37
|
+
|
38
|
+
def getResourcePath(action)
|
39
|
+
#Returns the resource path based on the action
|
40
|
+
#@return str
|
41
|
+
|
42
|
+
action = action.upcase
|
43
|
+
|
44
|
+
if action == "CREATE"
|
45
|
+
return "/fraud/merchant/v3/retro/retro-inquiry-details"
|
46
|
+
end
|
47
|
+
|
48
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
49
|
+
|
50
|
+
end
|
51
|
+
|
52
|
+
def getHeaderParams(action)
|
53
|
+
#Returns a list containing header params
|
54
|
+
#@return list
|
55
|
+
action = action.upcase
|
56
|
+
|
57
|
+
if action == "CREATE"
|
58
|
+
return []
|
59
|
+
end
|
60
|
+
|
61
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
62
|
+
end
|
63
|
+
|
64
|
+
def getQueryParams(action)
|
65
|
+
#Returns a list containing query params
|
66
|
+
#@return list
|
67
|
+
action = action.upcase
|
68
|
+
|
69
|
+
if action == "CREATE"
|
70
|
+
return ["AcquirerId"]
|
71
|
+
end
|
72
|
+
|
73
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
74
|
+
end
|
75
|
+
|
76
|
+
def self.getApiVersion
|
77
|
+
return "1.0.0"
|
78
|
+
end
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
def self.create(mapObj)
|
84
|
+
#
|
85
|
+
#Creates object of type RetroactiveInquiryDetailsRequest
|
86
|
+
#
|
87
|
+
#@param Dict mapObj, containing the required parameters to create a new object
|
88
|
+
#@return RetroactiveInquiryDetailsRequest of the response of created instance.
|
89
|
+
#
|
90
|
+
return self.createObject(RetroactiveInquiryDetailsRequest.new(mapObj))
|
91
|
+
end
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
@@ -0,0 +1,110 @@
|
|
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
|
+
|
31
|
+
module MasterCard
|
32
|
+
module API
|
33
|
+
module Match
|
34
|
+
include MasterCard::Core::Model
|
35
|
+
class RetroactiveInquiryRequest < BaseObject
|
36
|
+
#
|
37
|
+
|
38
|
+
def getResourcePath(action)
|
39
|
+
#Returns the resource path based on the action
|
40
|
+
#@return str
|
41
|
+
|
42
|
+
action = action.upcase
|
43
|
+
|
44
|
+
if action == "CREATE"
|
45
|
+
return "/fraud/merchant/v3/retro/retro-list"
|
46
|
+
end
|
47
|
+
|
48
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
49
|
+
|
50
|
+
end
|
51
|
+
|
52
|
+
def getHeaderParams(action)
|
53
|
+
#Returns a list containing header params
|
54
|
+
#@return list
|
55
|
+
action = action.upcase
|
56
|
+
|
57
|
+
if action == "CREATE"
|
58
|
+
return []
|
59
|
+
end
|
60
|
+
|
61
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
62
|
+
end
|
63
|
+
|
64
|
+
def getQueryParams(action)
|
65
|
+
#Returns a list containing query params
|
66
|
+
#@return list
|
67
|
+
action = action.upcase
|
68
|
+
|
69
|
+
if action == "CREATE"
|
70
|
+
return []
|
71
|
+
end
|
72
|
+
|
73
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
74
|
+
end
|
75
|
+
|
76
|
+
def self.getApiVersion
|
77
|
+
return "1.0.0"
|
78
|
+
end
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
def self.create(mapObj)
|
84
|
+
#
|
85
|
+
#Creates object of type RetroactiveInquiryRequest
|
86
|
+
#
|
87
|
+
#@param Dict mapObj, containing the required parameters to create a new object
|
88
|
+
#@return RetroactiveInquiryRequest of the response of created instance.
|
89
|
+
#
|
90
|
+
return self.createObject(RetroactiveInquiryRequest.new(mapObj))
|
91
|
+
end
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
@@ -0,0 +1,112 @@
|
|
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
|
+
|
31
|
+
module MasterCard
|
32
|
+
module API
|
33
|
+
module Match
|
34
|
+
include MasterCard::Core::Model
|
35
|
+
class TerminationInquiryHistoryRequest < BaseObject
|
36
|
+
#
|
37
|
+
|
38
|
+
def getResourcePath(action)
|
39
|
+
#Returns the resource path based on the action
|
40
|
+
#@return str
|
41
|
+
|
42
|
+
action = action.upcase
|
43
|
+
|
44
|
+
if action == "READ"
|
45
|
+
return "/fraud/merchant/v3/termination-inquiry/{IRN}"
|
46
|
+
end
|
47
|
+
|
48
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
49
|
+
|
50
|
+
end
|
51
|
+
|
52
|
+
def getHeaderParams(action)
|
53
|
+
#Returns a list containing header params
|
54
|
+
#@return list
|
55
|
+
action = action.upcase
|
56
|
+
|
57
|
+
if action == "READ"
|
58
|
+
return []
|
59
|
+
end
|
60
|
+
|
61
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
62
|
+
end
|
63
|
+
|
64
|
+
def getQueryParams(action)
|
65
|
+
#Returns a list containing query params
|
66
|
+
#@return list
|
67
|
+
action = action.upcase
|
68
|
+
|
69
|
+
if action == "READ"
|
70
|
+
return ["PageOffset","PageLength","AcquirerId"]
|
71
|
+
end
|
72
|
+
|
73
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
74
|
+
end
|
75
|
+
|
76
|
+
def self.getApiVersion
|
77
|
+
return "1.0.0"
|
78
|
+
end
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
def self.read(id, criteria = nil)
|
89
|
+
#
|
90
|
+
#Returns objects of type TerminationInquiryHistoryRequest by id and optional criteria
|
91
|
+
#@param str id
|
92
|
+
#@param dict criteria
|
93
|
+
#@return instance of TerminationInquiryHistoryRequest
|
94
|
+
|
95
|
+
mapObj = TerminationInquiryHistoryRequest.new
|
96
|
+
mapObj.set("id", id)
|
97
|
+
return self.readObject(TerminationInquiryHistoryRequest.new(mapObj), criteria)
|
98
|
+
end
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
|
@@ -0,0 +1,110 @@
|
|
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
|
+
|
31
|
+
module MasterCard
|
32
|
+
module API
|
33
|
+
module Match
|
34
|
+
include MasterCard::Core::Model
|
35
|
+
class TerminationInquiryRequest < BaseObject
|
36
|
+
#
|
37
|
+
|
38
|
+
def getResourcePath(action)
|
39
|
+
#Returns the resource path based on the action
|
40
|
+
#@return str
|
41
|
+
|
42
|
+
action = action.upcase
|
43
|
+
|
44
|
+
if action == "CREATE"
|
45
|
+
return "/fraud/merchant/v3/termination-inquiry"
|
46
|
+
end
|
47
|
+
|
48
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
49
|
+
|
50
|
+
end
|
51
|
+
|
52
|
+
def getHeaderParams(action)
|
53
|
+
#Returns a list containing header params
|
54
|
+
#@return list
|
55
|
+
action = action.upcase
|
56
|
+
|
57
|
+
if action == "CREATE"
|
58
|
+
return []
|
59
|
+
end
|
60
|
+
|
61
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
62
|
+
end
|
63
|
+
|
64
|
+
def getQueryParams(action)
|
65
|
+
#Returns a list containing query params
|
66
|
+
#@return list
|
67
|
+
action = action.upcase
|
68
|
+
|
69
|
+
if action == "CREATE"
|
70
|
+
return ["PageOffset","PageLength"]
|
71
|
+
end
|
72
|
+
|
73
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
74
|
+
end
|
75
|
+
|
76
|
+
def self.getApiVersion
|
77
|
+
return "1.0.0"
|
78
|
+
end
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
def self.create(mapObj)
|
84
|
+
#
|
85
|
+
#Creates object of type TerminationInquiryRequest
|
86
|
+
#
|
87
|
+
#@param Dict mapObj, containing the required parameters to create a new object
|
88
|
+
#@return TerminationInquiryRequest of the response of created instance.
|
89
|
+
#
|
90
|
+
return self.createObject(TerminationInquiryRequest.new(mapObj))
|
91
|
+
end
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
@@ -0,0 +1,7 @@
|
|
1
|
+
require 'mastercard_api_core'
|
2
|
+
require 'mastercard/api/match/terminationinquiryrequest'
|
3
|
+
require 'mastercard/api/match/retroactiveinquirydetailsrequest'
|
4
|
+
require 'mastercard/api/match/acquirercontactrequest'
|
5
|
+
require 'mastercard/api/match/terminationinquiryhistoryrequest'
|
6
|
+
require 'mastercard/api/match/retroactiveinquiryrequest'
|
7
|
+
require 'mastercard/api/match/addterminatedmerchant'
|
metadata
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mastercard_match
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- MasterCard Worldwide
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-08-10 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: mastercard_api_core
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 1.1.0
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 1.1.0
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 1.1.0
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 1.1.0
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: ci_reporter_minitest
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
40
|
+
type: :development
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
47
|
+
description: MasterCard Match Description
|
48
|
+
email:
|
49
|
+
- APISupport@mastercard.com
|
50
|
+
executables: []
|
51
|
+
extensions: []
|
52
|
+
extra_rdoc_files: []
|
53
|
+
files:
|
54
|
+
- lib/mastercard/api/match/acquirercontactrequest.rb
|
55
|
+
- lib/mastercard/api/match/addterminatedmerchant.rb
|
56
|
+
- lib/mastercard/api/match/retroactiveinquirydetailsrequest.rb
|
57
|
+
- lib/mastercard/api/match/retroactiveinquiryrequest.rb
|
58
|
+
- lib/mastercard/api/match/terminationinquiryhistoryrequest.rb
|
59
|
+
- lib/mastercard/api/match/terminationinquiryrequest.rb
|
60
|
+
- lib/mastercard_match.rb
|
61
|
+
homepage: https://developer.mastercard.com
|
62
|
+
licenses:
|
63
|
+
- BSD-2-Clause
|
64
|
+
metadata: {}
|
65
|
+
post_install_message:
|
66
|
+
rdoc_options: []
|
67
|
+
require_paths:
|
68
|
+
- lib
|
69
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '0'
|
74
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: '0'
|
79
|
+
requirements: []
|
80
|
+
rubyforge_project:
|
81
|
+
rubygems_version: 2.5.1
|
82
|
+
signing_key:
|
83
|
+
specification_version: 4
|
84
|
+
summary: MasterCard Match SDK
|
85
|
+
test_files: []
|