mastercard_match 1.0.0 → 1.0.2

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
  SHA1:
3
- metadata.gz: ac46492e8dbf62f4179216e27b3244341b9a8922
4
- data.tar.gz: 6cb1d86f0d5f739e2293a20e77fe999d27c1dbbc
3
+ metadata.gz: 827715f3fb6de06e46614ee3b3c222e9b1d1485e
4
+ data.tar.gz: 895f9df13ba53a2f3914d6f319e484e8b1ce8534
5
5
  SHA512:
6
- metadata.gz: 52bbcbbde2382ad37cec6b3ddd1e84d04efdfea28e1357ecfd3c5210b3834f1f45c82efe5b15790b524dbb056dfc19c02d1c680753b3909712ac0bac4611036d
7
- data.tar.gz: b0bfc58229644dbe05672705eaaabdb5f2874518ef161748b66f90c0b7664c125c38e046ccb725d9ee15672da1d6eb013bdc021b98a69550b59ac263457a7296
6
+ metadata.gz: bcc87554020c41d8ca6ff54c067e74331c49c614245871312d53048818df81743511955f04a4b904c8d538e8f029fe25b99ede00c39a7c2eb056c6f69b547a7d
7
+ data.tar.gz: de26dd3bff2563f7f6d46052a8e01b225e65fa512c7c01f4abef5a99490895c72d56088903203deed23deb7872fa086b1851754b581ed1c6f0059fb4918136d8
@@ -31,55 +31,30 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module Match
34
- include MasterCard::Core::Model
35
- class AcquirerContactRequest < BaseObject
34
+ class AcquirerContactRequest < MasterCard::Core::Model::BaseObject
35
+ include MasterCard::Core::Model
36
36
  #
37
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
38
+ @__store = {
39
+ '990a1c7e-f9f1-4cfe-a903-d2c13cee2455' => OperationConfig.new("/fraud/merchant/v3/common/contact-details", "create", [], []),
47
40
 
48
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
41
+ }
49
42
 
50
- end
43
+ protected
51
44
 
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 []
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
59
48
  end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
62
50
  end
63
51
 
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}")
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
74
54
  end
75
55
 
76
- def self.getApiVersion
77
- return "1.0.0"
78
- end
56
+ public
79
57
 
80
-
81
-
82
-
83
58
  def self.create(mapObj)
84
59
  #
85
60
  #Creates object of type AcquirerContactRequest
@@ -87,16 +62,14 @@ module MasterCard
87
62
  #@param Dict mapObj, containing the required parameters to create a new object
88
63
  #@return AcquirerContactRequest of the response of created instance.
89
64
  #
90
- return self.createObject(AcquirerContactRequest.new(mapObj))
65
+ return self.execute("990a1c7e-f9f1-4cfe-a903-d2c13cee2455", AcquirerContactRequest.new(mapObj))
91
66
  end
92
67
 
93
-
94
-
95
-
96
-
97
-
98
-
99
-
68
+
69
+
70
+
71
+
72
+
100
73
  end
101
74
  end
102
75
  end
@@ -31,55 +31,30 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module Match
34
- include MasterCard::Core::Model
35
- class AddTerminatedMerchant < BaseObject
34
+ class AddTerminatedMerchant < MasterCard::Core::Model::BaseObject
35
+ include MasterCard::Core::Model
36
36
  #
37
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
38
+ @__store = {
39
+ '73642e03-3fb8-46fa-8986-9b1486562ea3' => OperationConfig.new("/fraud/merchant/v3/add-merchant", "create", [], []),
47
40
 
48
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
41
+ }
49
42
 
50
- end
43
+ protected
51
44
 
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 []
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
59
48
  end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
62
50
  end
63
51
 
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}")
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
74
54
  end
75
55
 
76
- def self.getApiVersion
77
- return "1.0.0"
78
- end
56
+ public
79
57
 
80
-
81
-
82
-
83
58
  def self.create(mapObj)
84
59
  #
85
60
  #Creates object of type AddTerminatedMerchant
@@ -87,16 +62,14 @@ module MasterCard
87
62
  #@param Dict mapObj, containing the required parameters to create a new object
88
63
  #@return AddTerminatedMerchant of the response of created instance.
89
64
  #
90
- return self.createObject(AddTerminatedMerchant.new(mapObj))
65
+ return self.execute("73642e03-3fb8-46fa-8986-9b1486562ea3", AddTerminatedMerchant.new(mapObj))
91
66
  end
92
67
 
93
-
94
-
95
-
96
-
97
-
98
-
99
-
68
+
69
+
70
+
71
+
72
+
100
73
  end
101
74
  end
102
75
  end
@@ -31,55 +31,30 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module Match
34
- include MasterCard::Core::Model
35
- class RetroactiveInquiryDetailsRequest < BaseObject
34
+ class RetroactiveInquiryDetailsRequest < MasterCard::Core::Model::BaseObject
35
+ include MasterCard::Core::Model
36
36
  #
37
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
38
+ @__store = {
39
+ '164abce8-5a59-4524-983f-fefc2e1a7481' => OperationConfig.new("/fraud/merchant/v3/retro/retro-inquiry-details", "create", [], ["AcquirerId"]),
47
40
 
48
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
41
+ }
49
42
 
50
- end
43
+ protected
51
44
 
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 []
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
59
48
  end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
62
50
  end
63
51
 
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}")
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
74
54
  end
75
55
 
76
- def self.getApiVersion
77
- return "1.0.0"
78
- end
56
+ public
79
57
 
80
-
81
-
82
-
83
58
  def self.create(mapObj)
84
59
  #
85
60
  #Creates object of type RetroactiveInquiryDetailsRequest
@@ -87,16 +62,14 @@ module MasterCard
87
62
  #@param Dict mapObj, containing the required parameters to create a new object
88
63
  #@return RetroactiveInquiryDetailsRequest of the response of created instance.
89
64
  #
90
- return self.createObject(RetroactiveInquiryDetailsRequest.new(mapObj))
65
+ return self.execute("164abce8-5a59-4524-983f-fefc2e1a7481", RetroactiveInquiryDetailsRequest.new(mapObj))
91
66
  end
92
67
 
93
-
94
-
95
-
96
-
97
-
98
-
99
-
68
+
69
+
70
+
71
+
72
+
100
73
  end
101
74
  end
102
75
  end
@@ -31,55 +31,30 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module Match
34
- include MasterCard::Core::Model
35
- class RetroactiveInquiryRequest < BaseObject
34
+ class RetroactiveInquiryRequest < MasterCard::Core::Model::BaseObject
35
+ include MasterCard::Core::Model
36
36
  #
37
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
38
+ @__store = {
39
+ '71f73e1e-4e74-4924-bb96-e39b43713b0d' => OperationConfig.new("/fraud/merchant/v3/retro/retro-list", "create", [], []),
47
40
 
48
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
41
+ }
49
42
 
50
- end
43
+ protected
51
44
 
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 []
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
59
48
  end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
62
50
  end
63
51
 
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}")
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
74
54
  end
75
55
 
76
- def self.getApiVersion
77
- return "1.0.0"
78
- end
56
+ public
79
57
 
80
-
81
-
82
-
83
58
  def self.create(mapObj)
84
59
  #
85
60
  #Creates object of type RetroactiveInquiryRequest
@@ -87,16 +62,14 @@ module MasterCard
87
62
  #@param Dict mapObj, containing the required parameters to create a new object
88
63
  #@return RetroactiveInquiryRequest of the response of created instance.
89
64
  #
90
- return self.createObject(RetroactiveInquiryRequest.new(mapObj))
65
+ return self.execute("71f73e1e-4e74-4924-bb96-e39b43713b0d", RetroactiveInquiryRequest.new(mapObj))
91
66
  end
92
67
 
93
-
94
-
95
-
96
-
97
-
98
-
99
-
68
+
69
+
70
+
71
+
72
+
100
73
  end
101
74
  end
102
75
  end
@@ -0,0 +1,50 @@
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
+ module MasterCard
28
+ module API
29
+ module Match
30
+ class SDKConfig
31
+
32
+ private
33
+ @@host = nil
34
+
35
+ public
36
+ def self.setHost(host)
37
+ @@host = host
38
+ end
39
+
40
+ def self.getHost()
41
+ return @@host
42
+ end
43
+
44
+ def self.getVersion()
45
+ return "1.0.2"
46
+ end
47
+ end
48
+ end
49
+ end
50
+ end
@@ -31,59 +31,33 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module Match
34
- include MasterCard::Core::Model
35
- class TerminationInquiryHistoryRequest < BaseObject
34
+ class TerminationInquiryHistoryRequest < MasterCard::Core::Model::BaseObject
35
+ include MasterCard::Core::Model
36
36
  #
37
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
38
+ @__store = {
39
+ '86aec58b-632d-4a13-86f0-4c3bb6080036' => OperationConfig.new("/fraud/merchant/v3/termination-inquiry/{IRN}", "read", [], ["PageOffset","PageLength","AcquirerId"]),
47
40
 
48
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
41
+ }
49
42
 
50
- end
43
+ protected
51
44
 
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 []
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
59
48
  end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
62
50
  end
63
51
 
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}")
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
74
54
  end
75
55
 
76
- def self.getApiVersion
77
- return "1.0.0"
78
- end
56
+ public
57
+
58
+
59
+
79
60
 
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
61
 
88
62
  def self.read(id, criteria = nil)
89
63
  #
@@ -93,12 +67,21 @@ module MasterCard
93
67
  #@return instance of TerminationInquiryHistoryRequest
94
68
 
95
69
  mapObj = TerminationInquiryHistoryRequest.new
96
- mapObj.set("id", id)
97
- return self.readObject(TerminationInquiryHistoryRequest.new(mapObj), criteria)
70
+ if !(id.nil? || id.to_s.empty?)
71
+ mapObj.set("id", id)
72
+ end
73
+ if !criteria.nil?
74
+ if criteria.instance_of? RequestMap
75
+ mapObj.setAll(criteria.getObject())
76
+ else
77
+ mapObj.setAll(criteria)
78
+ end
79
+ end
80
+
81
+ return self.execute("86aec58b-632d-4a13-86f0-4c3bb6080036",TerminationInquiryHistoryRequest.new(mapObj))
98
82
  end
99
-
100
-
101
-
83
+
84
+
102
85
  end
103
86
  end
104
87
  end
@@ -31,55 +31,30 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module Match
34
- include MasterCard::Core::Model
35
- class TerminationInquiryRequest < BaseObject
34
+ class TerminationInquiryRequest < MasterCard::Core::Model::BaseObject
35
+ include MasterCard::Core::Model
36
36
  #
37
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
38
+ @__store = {
39
+ '49b69455-0c23-487b-9230-48088bb51c98' => OperationConfig.new("/fraud/merchant/v3/termination-inquiry", "create", [], ["PageOffset","PageLength"]),
47
40
 
48
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
41
+ }
49
42
 
50
- end
43
+ protected
51
44
 
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 []
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
59
48
  end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
62
50
  end
63
51
 
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}")
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
74
54
  end
75
55
 
76
- def self.getApiVersion
77
- return "1.0.0"
78
- end
56
+ public
79
57
 
80
-
81
-
82
-
83
58
  def self.create(mapObj)
84
59
  #
85
60
  #Creates object of type TerminationInquiryRequest
@@ -87,16 +62,14 @@ module MasterCard
87
62
  #@param Dict mapObj, containing the required parameters to create a new object
88
63
  #@return TerminationInquiryRequest of the response of created instance.
89
64
  #
90
- return self.createObject(TerminationInquiryRequest.new(mapObj))
65
+ return self.execute("49b69455-0c23-487b-9230-48088bb51c98", TerminationInquiryRequest.new(mapObj))
91
66
  end
92
67
 
93
-
94
-
95
-
96
-
97
-
98
-
99
-
68
+
69
+
70
+
71
+
72
+
100
73
  end
101
74
  end
102
75
  end
@@ -1,4 +1,5 @@
1
1
  require 'mastercard_api_core'
2
+ require 'mastercard/api/match/skdconfig'
2
3
  require 'mastercard/api/match/terminationinquiryrequest'
3
4
  require 'mastercard/api/match/retroactiveinquirydetailsrequest'
4
5
  require 'mastercard/api/match/acquirercontactrequest'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mastercard_match
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - MasterCard Worldwide
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-10 00:00:00.000000000 Z
11
+ date: 2016-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mastercard_api_core
@@ -16,20 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.1.0
19
+ version: 1.2.0
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 1.1.0
22
+ version: 1.2.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
- version: 1.1.0
29
+ version: 1.2.0
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 1.1.0
32
+ version: 1.2.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: ci_reporter_minitest
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -55,6 +55,7 @@ files:
55
55
  - lib/mastercard/api/match/addterminatedmerchant.rb
56
56
  - lib/mastercard/api/match/retroactiveinquirydetailsrequest.rb
57
57
  - lib/mastercard/api/match/retroactiveinquiryrequest.rb
58
+ - lib/mastercard/api/match/skdconfig.rb
58
59
  - lib/mastercard/api/match/terminationinquiryhistoryrequest.rb
59
60
  - lib/mastercard/api/match/terminationinquiryrequest.rb
60
61
  - lib/mastercard_match.rb