mastercard_repower 0.0.1 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c20e2fa29e935e0719275285ed92ece28fffeb1e
|
4
|
+
data.tar.gz: 28a94203d91579162b687407b4f1262759bfcb0f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4acd8547f21a01e629eae76555100555006e7eeb15991fc920ed26ed946fe823daf9a0a5acf0f50366e96d14818a9099bcbe3821616f9fb12ba875680b672f65
|
7
|
+
data.tar.gz: 763d0b26a6d7619e067fb6d861597e1ea5c341be231e28cec40dba6f48dc3b2134ee6ff80270196c56dbe86e6a26b5416d26d71164073f2182ef2acbcfbd578c
|
@@ -30,56 +30,31 @@ require "mastercard/core/model"
|
|
30
30
|
|
31
31
|
module MasterCard
|
32
32
|
module API
|
33
|
-
module
|
34
|
-
|
35
|
-
|
33
|
+
module Repower
|
34
|
+
class RePowerTransfer < MasterCard::Core::Model::BaseObject
|
35
|
+
include MasterCard::Core::Model
|
36
36
|
#
|
37
37
|
|
38
|
-
|
39
|
-
|
40
|
-
#@return str
|
41
|
-
|
42
|
-
action = action.upcase
|
43
|
-
|
44
|
-
if action == "CREATE"
|
45
|
-
return "/repower/v1/repower"
|
46
|
-
end
|
38
|
+
@__store = {
|
39
|
+
'a0fbfec0-b68c-4dac-95e4-920fe9652d3c' => OperationConfig.new("/repower/v2/repower", "create", [], []),
|
47
40
|
|
48
|
-
|
41
|
+
}
|
49
42
|
|
50
|
-
|
43
|
+
protected
|
51
44
|
|
52
|
-
def
|
53
|
-
|
54
|
-
|
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
|
65
|
-
|
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
|
-
|
77
|
-
return "0.0.1"
|
78
|
-
end
|
56
|
+
public
|
79
57
|
|
80
|
-
|
81
|
-
|
82
|
-
|
83
58
|
def self.create(mapObj)
|
84
59
|
#
|
85
60
|
#Creates object of type RePowerTransfer
|
@@ -87,16 +62,14 @@ module MasterCard
|
|
87
62
|
#@param Dict mapObj, containing the required parameters to create a new object
|
88
63
|
#@return RePowerTransfer of the response of created instance.
|
89
64
|
#
|
90
|
-
return self.
|
65
|
+
return self.execute("a0fbfec0-b68c-4dac-95e4-920fe9652d3c", RePowerTransfer.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
|
@@ -30,56 +30,31 @@ require "mastercard/core/model"
|
|
30
30
|
|
31
31
|
module MasterCard
|
32
32
|
module API
|
33
|
-
module
|
34
|
-
|
35
|
-
|
33
|
+
module Repower
|
34
|
+
class RePowerTransferReversal < MasterCard::Core::Model::BaseObject
|
35
|
+
include MasterCard::Core::Model
|
36
36
|
#
|
37
37
|
|
38
|
-
|
39
|
-
|
40
|
-
#@return str
|
41
|
-
|
42
|
-
action = action.upcase
|
43
|
-
|
44
|
-
if action == "CREATE"
|
45
|
-
return "/repower/v1/repowerreversal"
|
46
|
-
end
|
38
|
+
@__store = {
|
39
|
+
'cf22c61e-dbfe-4f19-90bb-b2f44132c86b' => OperationConfig.new("/repower/v2/repowerreversal", "create", [], []),
|
47
40
|
|
48
|
-
|
41
|
+
}
|
49
42
|
|
50
|
-
|
43
|
+
protected
|
51
44
|
|
52
|
-
def
|
53
|
-
|
54
|
-
|
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
|
65
|
-
|
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
|
-
|
77
|
-
return "0.0.1"
|
78
|
-
end
|
56
|
+
public
|
79
57
|
|
80
|
-
|
81
|
-
|
82
|
-
|
83
58
|
def self.create(mapObj)
|
84
59
|
#
|
85
60
|
#Creates object of type RePowerTransferReversal
|
@@ -87,16 +62,14 @@ module MasterCard
|
|
87
62
|
#@param Dict mapObj, containing the required parameters to create a new object
|
88
63
|
#@return RePowerTransferReversal of the response of created instance.
|
89
64
|
#
|
90
|
-
return self.
|
65
|
+
return self.execute("cf22c61e-dbfe-4f19-90bb-b2f44132c86b", RePowerTransferReversal.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 Repower
|
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.1"
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
data/lib/mastercard_repower.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mastercard_repower
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.1
|
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-
|
11
|
+
date: 2016-10-13 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:
|
19
|
+
version: 1.2.0
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version:
|
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:
|
29
|
+
version: 1.2.0
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version:
|
32
|
+
version: 1.2.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: ci_reporter_minitest
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -44,7 +44,7 @@ dependencies:
|
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '0'
|
47
|
-
description: MasterCard
|
47
|
+
description: MasterCard Repower Description
|
48
48
|
email:
|
49
49
|
- APISupport@mastercard.com
|
50
50
|
executables: []
|
@@ -53,6 +53,7 @@ extra_rdoc_files: []
|
|
53
53
|
files:
|
54
54
|
- lib/mastercard/api/repower/repowertransfer.rb
|
55
55
|
- lib/mastercard/api/repower/repowertransferreversal.rb
|
56
|
+
- lib/mastercard/api/repower/skdconfig.rb
|
56
57
|
- lib/mastercard_repower.rb
|
57
58
|
homepage: https://developer.mastercard.com
|
58
59
|
licenses:
|
@@ -77,5 +78,5 @@ rubyforge_project:
|
|
77
78
|
rubygems_version: 2.5.1
|
78
79
|
signing_key:
|
79
80
|
specification_version: 4
|
80
|
-
summary: MasterCard
|
81
|
+
summary: MasterCard Repower SDK
|
81
82
|
test_files: []
|