mastercard_mdescustomerservice 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/lib/mastercard/api/mdescustomerservice/search.rb +110 -0
- data/lib/mastercard/api/mdescustomerservice/systemstatus.rb +111 -0
- data/lib/mastercard/api/mdescustomerservice/tokenactivate.rb +110 -0
- data/lib/mastercard/api/mdescustomerservice/tokenactivationmethods.rb +110 -0
- data/lib/mastercard/api/mdescustomerservice/tokencomments.rb +110 -0
- data/lib/mastercard/api/mdescustomerservice/tokendelete.rb +110 -0
- data/lib/mastercard/api/mdescustomerservice/tokenresendactivationmethods.rb +110 -0
- data/lib/mastercard/api/mdescustomerservice/tokenresetmobilepin.rb +110 -0
- data/lib/mastercard/api/mdescustomerservice/tokenstatushistory.rb +110 -0
- data/lib/mastercard/api/mdescustomerservice/tokensuspend.rb +110 -0
- data/lib/mastercard/api/mdescustomerservice/tokenunsuspend.rb +110 -0
- data/lib/mastercard/api/mdescustomerservice/tokenupdate.rb +110 -0
- data/lib/mastercard/api/mdescustomerservice/transactions.rb +110 -0
- data/lib/mastercard_mdescustomerservice.rb +14 -0
- metadata +92 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 9157aacd4da5d289466f279777b582227a34f527
|
4
|
+
data.tar.gz: b6a8d669d6bcf5d3bed35f35144b1bacc9cec795
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1dc8cbc466c63b4f08137bac0429ca91e99227bcc731f09e671953f8a09dd4b6239dfd2ced934795c87baefcbf9029511e30807c0fc90f8be546d0589bbe3ef6
|
7
|
+
data.tar.gz: 1c9bd1f14e651f46cd54012d031491e879b4bf4c66e2d816d2890b0a8e7ea1712f6a587a5b6a482c2bb90e0626b4f0c91c74e936b78b2a56b569181ecd3a7121
|
@@ -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 MdesCustomerService
|
34
|
+
include MasterCard::Core::Model
|
35
|
+
class Search < 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 "/mdes/csapi/v2/search"
|
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 "0.0.2"
|
78
|
+
end
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
def self.create(mapObj)
|
84
|
+
#
|
85
|
+
#Creates object of type Search
|
86
|
+
#
|
87
|
+
#@param Dict mapObj, containing the required parameters to create a new object
|
88
|
+
#@return Search of the response of created instance.
|
89
|
+
#
|
90
|
+
return self.createObject(Search.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,111 @@
|
|
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 MdesCustomerService
|
34
|
+
include MasterCard::Core::Model
|
35
|
+
class SystemStatus < 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 == "QUERY"
|
45
|
+
return "/mdes/csapi/v2/systemstatus"
|
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 == "QUERY"
|
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 == "QUERY"
|
70
|
+
return []
|
71
|
+
end
|
72
|
+
|
73
|
+
raise StandardError.new("Invalid action supplied: #{action.to_s}")
|
74
|
+
end
|
75
|
+
|
76
|
+
def self.getApiVersion
|
77
|
+
return "0.0.2"
|
78
|
+
end
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
def self.query(criteria)
|
89
|
+
#
|
90
|
+
#Query objects of type SystemStatus by id and optional criteria
|
91
|
+
#@param type criteria
|
92
|
+
#@return SystemStatus object representing the response.
|
93
|
+
#
|
94
|
+
|
95
|
+
obj = SystemStatus.new(criteria)
|
96
|
+
return self.queryObject(obj)
|
97
|
+
end
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
|
@@ -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 MdesCustomerService
|
34
|
+
include MasterCard::Core::Model
|
35
|
+
class TokenActivate < 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 "/mdes/csapi/v2/token/activate"
|
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 "0.0.2"
|
78
|
+
end
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
def self.create(mapObj)
|
84
|
+
#
|
85
|
+
#Creates object of type TokenActivate
|
86
|
+
#
|
87
|
+
#@param Dict mapObj, containing the required parameters to create a new object
|
88
|
+
#@return TokenActivate of the response of created instance.
|
89
|
+
#
|
90
|
+
return self.createObject(TokenActivate.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 MdesCustomerService
|
34
|
+
include MasterCard::Core::Model
|
35
|
+
class TokenActivationMethods < 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 "/mdes/csapi/v2/token/activationmethods"
|
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 "0.0.2"
|
78
|
+
end
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
def self.create(mapObj)
|
84
|
+
#
|
85
|
+
#Creates object of type TokenActivationMethods
|
86
|
+
#
|
87
|
+
#@param Dict mapObj, containing the required parameters to create a new object
|
88
|
+
#@return TokenActivationMethods of the response of created instance.
|
89
|
+
#
|
90
|
+
return self.createObject(TokenActivationMethods.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 MdesCustomerService
|
34
|
+
include MasterCard::Core::Model
|
35
|
+
class TokenComments < 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 "/mdes/csapi/v2/token/comments"
|
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 "0.0.2"
|
78
|
+
end
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
def self.create(mapObj)
|
84
|
+
#
|
85
|
+
#Creates object of type TokenComments
|
86
|
+
#
|
87
|
+
#@param Dict mapObj, containing the required parameters to create a new object
|
88
|
+
#@return TokenComments of the response of created instance.
|
89
|
+
#
|
90
|
+
return self.createObject(TokenComments.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 MdesCustomerService
|
34
|
+
include MasterCard::Core::Model
|
35
|
+
class TokenDelete < 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 "/mdes/csapi/v2/token/delete"
|
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 "0.0.2"
|
78
|
+
end
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
def self.create(mapObj)
|
84
|
+
#
|
85
|
+
#Creates object of type TokenDelete
|
86
|
+
#
|
87
|
+
#@param Dict mapObj, containing the required parameters to create a new object
|
88
|
+
#@return TokenDelete of the response of created instance.
|
89
|
+
#
|
90
|
+
return self.createObject(TokenDelete.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
|
+
|