mastercard_retaillocationinsights 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/mastercard/api/retaillocationinsights/merchantindustries.rb +35 -31
- data/lib/mastercard/api/retaillocationinsights/{skdconfig.rb → resourceconfig.rb} +70 -22
- data/lib/mastercard/api/retaillocationinsights/retailunitmerchants.rb +35 -31
- data/lib/mastercard/api/retaillocationinsights/retailunits.rb +35 -31
- data/lib/mastercard/api/retaillocationinsights/retailunitsmetrics.rb +35 -31
- data/lib/mastercard/api/retaillocationinsights/subscriptions.rb +35 -31
- data/lib/mastercard_retaillocationinsights.rb +5 -3
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d30c10f87618af844742c7b1bc10ef97815a2b6a
|
4
|
+
data.tar.gz: e18feedd44dc203d4c39c856dfae81a93cacdfce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1809cc3d221ca867273344967b0b2498592936b75018f45724527cbcb2e470a7a4dc58470055b4a32452a3407a2485bbf735f5af05ce972cf3477a843f9ab5a
|
7
|
+
data.tar.gz: 455bc0a5d70377c7cb10e8fb5854eca18873578f53e5e825478bf891631858b03f763dcc1fa156bb78e113a0b7ec0da7c0d993de1e14f2bc4cfd71abd23fc706
|
@@ -27,52 +27,56 @@
|
|
27
27
|
|
28
28
|
|
29
29
|
require "mastercard/core/model"
|
30
|
+
require "mastercard/core/baseobject"
|
30
31
|
|
31
32
|
module MasterCard
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
33
|
+
module API
|
34
|
+
module RetailLocationInsights
|
35
|
+
class MerchantIndustries < MasterCard::Core::Model::BaseObject
|
36
|
+
include MasterCard::Core::Model
|
37
|
+
#
|
37
38
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
39
|
+
@__store = {
|
40
|
+
'3ae1a284-2edf-4992-9a34-5c8fa3b9cd2c' => OperationConfig.new("/upfront/v1/upfront/merchantindustries", "query", [], []),
|
41
|
+
|
42
|
+
}
|
42
43
|
|
43
|
-
|
44
|
+
protected
|
44
45
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
46
|
+
def self.getOperationConfig(uuid)
|
47
|
+
if @__store.key?(uuid)
|
48
|
+
return @__store[uuid]
|
49
|
+
end
|
50
|
+
raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
|
51
|
+
end
|
51
52
|
|
52
|
-
|
53
|
-
|
54
|
-
|
53
|
+
def self.getOperationMetadata()
|
54
|
+
return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext())
|
55
|
+
end
|
55
56
|
|
56
|
-
|
57
|
+
public
|
57
58
|
|
58
59
|
|
59
60
|
|
60
61
|
|
61
62
|
|
62
63
|
|
63
|
-
def self.query(criteria)
|
64
|
-
#
|
65
|
-
#Query objects of type MerchantIndustries by id and optional criteria
|
66
|
-
#@param type criteria
|
67
|
-
#@return MerchantIndustries object representing the response.
|
68
|
-
#
|
69
64
|
|
70
|
-
|
71
|
-
|
65
|
+
def self.query(criteria)
|
66
|
+
#
|
67
|
+
#Query objects of type MerchantIndustries by id and optional criteria
|
68
|
+
#@param [Dict] criteria
|
69
|
+
#@return [MerchantIndustries] object representing the response.
|
70
|
+
#@raise [APIException] an exception from the response status
|
71
|
+
#
|
72
72
|
|
73
|
-
|
74
|
-
|
75
|
-
|
73
|
+
return self.execute("3ae1a284-2edf-4992-9a34-5c8fa3b9cd2c",MerchantIndustries.new(criteria))
|
74
|
+
end
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
76
80
|
end
|
77
81
|
|
78
82
|
|
@@ -24,27 +24,75 @@
|
|
24
24
|
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
25
25
|
# SUCH DAMAGE.
|
26
26
|
#
|
27
|
+
|
28
|
+
require "mastercard/core/constants"
|
29
|
+
require "mastercard/core/config"
|
30
|
+
|
27
31
|
module MasterCard
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
32
|
+
module API
|
33
|
+
module RetailLocationInsights
|
34
|
+
class ResourceConfig
|
35
|
+
include MasterCard::Core
|
36
|
+
|
37
|
+
@@instance = nil
|
38
|
+
|
39
|
+
def initialize
|
40
|
+
@name = "retail-location-insights"
|
41
|
+
@override = nil
|
42
|
+
@host = nil
|
43
|
+
@context = nil
|
44
|
+
@version = "1.0.3"
|
45
|
+
|
46
|
+
Config.registerResourceConfig(self)
|
47
|
+
currentEnvironment = Config.getEnvironment()
|
48
|
+
self.setEnvironment(currentEnvironment)
|
49
|
+
|
50
|
+
end
|
51
|
+
|
52
|
+
|
53
|
+
def self.instance
|
54
|
+
return @@instance
|
55
|
+
end
|
56
|
+
|
57
|
+
|
58
|
+
def getName
|
59
|
+
return @name
|
60
|
+
end
|
61
|
+
|
62
|
+
|
63
|
+
def getHost
|
64
|
+
unless @override.nil? || @override == 0
|
65
|
+
return @override
|
66
|
+
else
|
67
|
+
return @host
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
def getContext
|
72
|
+
return @context
|
73
|
+
end
|
74
|
+
|
75
|
+
def getVersion
|
76
|
+
return @version
|
77
|
+
end
|
78
|
+
|
79
|
+
def setEnvironment(environmet)
|
80
|
+
if Environment::MAPPING.key?(environmet)
|
81
|
+
tuple = Environment::MAPPING[environmet]
|
82
|
+
@host = tuple[0]
|
83
|
+
@context = tuple[1]
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
def setCustomEnvironment(host,context)
|
88
|
+
@host = host
|
89
|
+
@context = context
|
90
|
+
end
|
91
|
+
|
92
|
+
@@instance = ResourceConfig.new
|
93
|
+
|
94
|
+
private_class_method :new
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
50
98
|
end
|
@@ -27,52 +27,56 @@
|
|
27
27
|
|
28
28
|
|
29
29
|
require "mastercard/core/model"
|
30
|
+
require "mastercard/core/baseobject"
|
30
31
|
|
31
32
|
module MasterCard
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
33
|
+
module API
|
34
|
+
module RetailLocationInsights
|
35
|
+
class RetailUnitMerchants < MasterCard::Core::Model::BaseObject
|
36
|
+
include MasterCard::Core::Model
|
37
|
+
#
|
37
38
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
39
|
+
@__store = {
|
40
|
+
'bf4563f8-51d5-47a4-9780-e9abb1302749' => OperationConfig.new("/upfront/v1/upfront/retailunitmerchants", "query", [], ["PageOffset","PageLength","RetailUnitType","RetailUnitId","Period","Industry","StreetAddress","City","CountrySubdivision","PostalCode"]),
|
41
|
+
|
42
|
+
}
|
42
43
|
|
43
|
-
|
44
|
+
protected
|
44
45
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
46
|
+
def self.getOperationConfig(uuid)
|
47
|
+
if @__store.key?(uuid)
|
48
|
+
return @__store[uuid]
|
49
|
+
end
|
50
|
+
raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
|
51
|
+
end
|
51
52
|
|
52
|
-
|
53
|
-
|
54
|
-
|
53
|
+
def self.getOperationMetadata()
|
54
|
+
return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext())
|
55
|
+
end
|
55
56
|
|
56
|
-
|
57
|
+
public
|
57
58
|
|
58
59
|
|
59
60
|
|
60
61
|
|
61
62
|
|
62
63
|
|
63
|
-
def self.query(criteria)
|
64
|
-
#
|
65
|
-
#Query objects of type RetailUnitMerchants by id and optional criteria
|
66
|
-
#@param type criteria
|
67
|
-
#@return RetailUnitMerchants object representing the response.
|
68
|
-
#
|
69
64
|
|
70
|
-
|
71
|
-
|
65
|
+
def self.query(criteria)
|
66
|
+
#
|
67
|
+
#Query objects of type RetailUnitMerchants by id and optional criteria
|
68
|
+
#@param [Dict] criteria
|
69
|
+
#@return [RetailUnitMerchants] object representing the response.
|
70
|
+
#@raise [APIException] an exception from the response status
|
71
|
+
#
|
72
72
|
|
73
|
-
|
74
|
-
|
75
|
-
|
73
|
+
return self.execute("bf4563f8-51d5-47a4-9780-e9abb1302749",RetailUnitMerchants.new(criteria))
|
74
|
+
end
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
76
80
|
end
|
77
81
|
|
78
82
|
|
@@ -27,52 +27,56 @@
|
|
27
27
|
|
28
28
|
|
29
29
|
require "mastercard/core/model"
|
30
|
+
require "mastercard/core/baseobject"
|
30
31
|
|
31
32
|
module MasterCard
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
33
|
+
module API
|
34
|
+
module RetailLocationInsights
|
35
|
+
class RetailUnits < MasterCard::Core::Model::BaseObject
|
36
|
+
include MasterCard::Core::Model
|
37
|
+
#
|
37
38
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
39
|
+
@__store = {
|
40
|
+
'0e316ca9-f8b1-4b51-95c7-44cedc7f36af' => OperationConfig.new("/upfront/v1/upfront/retailunits", "query", [], ["PageOffset","PageLength","CountryCode","StateId","CountyId","CensusTract","PostalCode","RetailUnitType","RetailUnitId"]),
|
41
|
+
|
42
|
+
}
|
42
43
|
|
43
|
-
|
44
|
+
protected
|
44
45
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
46
|
+
def self.getOperationConfig(uuid)
|
47
|
+
if @__store.key?(uuid)
|
48
|
+
return @__store[uuid]
|
49
|
+
end
|
50
|
+
raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
|
51
|
+
end
|
51
52
|
|
52
|
-
|
53
|
-
|
54
|
-
|
53
|
+
def self.getOperationMetadata()
|
54
|
+
return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext())
|
55
|
+
end
|
55
56
|
|
56
|
-
|
57
|
+
public
|
57
58
|
|
58
59
|
|
59
60
|
|
60
61
|
|
61
62
|
|
62
63
|
|
63
|
-
def self.query(criteria)
|
64
|
-
#
|
65
|
-
#Query objects of type RetailUnits by id and optional criteria
|
66
|
-
#@param type criteria
|
67
|
-
#@return RetailUnits object representing the response.
|
68
|
-
#
|
69
64
|
|
70
|
-
|
71
|
-
|
65
|
+
def self.query(criteria)
|
66
|
+
#
|
67
|
+
#Query objects of type RetailUnits by id and optional criteria
|
68
|
+
#@param [Dict] criteria
|
69
|
+
#@return [RetailUnits] object representing the response.
|
70
|
+
#@raise [APIException] an exception from the response status
|
71
|
+
#
|
72
72
|
|
73
|
-
|
74
|
-
|
75
|
-
|
73
|
+
return self.execute("0e316ca9-f8b1-4b51-95c7-44cedc7f36af",RetailUnits.new(criteria))
|
74
|
+
end
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
76
80
|
end
|
77
81
|
|
78
82
|
|
@@ -27,52 +27,56 @@
|
|
27
27
|
|
28
28
|
|
29
29
|
require "mastercard/core/model"
|
30
|
+
require "mastercard/core/baseobject"
|
30
31
|
|
31
32
|
module MasterCard
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
33
|
+
module API
|
34
|
+
module RetailLocationInsights
|
35
|
+
class RetailUnitsMetrics < MasterCard::Core::Model::BaseObject
|
36
|
+
include MasterCard::Core::Model
|
37
|
+
#
|
37
38
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
39
|
+
@__store = {
|
40
|
+
'7021bd5f-ba78-42b7-bc32-60384bc9c235' => OperationConfig.new("/upfront/v1/upfront/retailunitmetrics", "query", [], ["PageOffset","PageLength","RetailUnitType","RetailUnitId","CompositeIndustry","Period"]),
|
41
|
+
|
42
|
+
}
|
42
43
|
|
43
|
-
|
44
|
+
protected
|
44
45
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
46
|
+
def self.getOperationConfig(uuid)
|
47
|
+
if @__store.key?(uuid)
|
48
|
+
return @__store[uuid]
|
49
|
+
end
|
50
|
+
raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
|
51
|
+
end
|
51
52
|
|
52
|
-
|
53
|
-
|
54
|
-
|
53
|
+
def self.getOperationMetadata()
|
54
|
+
return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext())
|
55
|
+
end
|
55
56
|
|
56
|
-
|
57
|
+
public
|
57
58
|
|
58
59
|
|
59
60
|
|
60
61
|
|
61
62
|
|
62
63
|
|
63
|
-
def self.query(criteria)
|
64
|
-
#
|
65
|
-
#Query objects of type RetailUnitsMetrics by id and optional criteria
|
66
|
-
#@param type criteria
|
67
|
-
#@return RetailUnitsMetrics object representing the response.
|
68
|
-
#
|
69
64
|
|
70
|
-
|
71
|
-
|
65
|
+
def self.query(criteria)
|
66
|
+
#
|
67
|
+
#Query objects of type RetailUnitsMetrics by id and optional criteria
|
68
|
+
#@param [Dict] criteria
|
69
|
+
#@return [RetailUnitsMetrics] object representing the response.
|
70
|
+
#@raise [APIException] an exception from the response status
|
71
|
+
#
|
72
72
|
|
73
|
-
|
74
|
-
|
75
|
-
|
73
|
+
return self.execute("7021bd5f-ba78-42b7-bc32-60384bc9c235",RetailUnitsMetrics.new(criteria))
|
74
|
+
end
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
76
80
|
end
|
77
81
|
|
78
82
|
|
@@ -27,52 +27,56 @@
|
|
27
27
|
|
28
28
|
|
29
29
|
require "mastercard/core/model"
|
30
|
+
require "mastercard/core/baseobject"
|
30
31
|
|
31
32
|
module MasterCard
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
33
|
+
module API
|
34
|
+
module RetailLocationInsights
|
35
|
+
class Subscriptions < MasterCard::Core::Model::BaseObject
|
36
|
+
include MasterCard::Core::Model
|
37
|
+
#
|
37
38
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
39
|
+
@__store = {
|
40
|
+
'5b3ab3b6-2f2a-4cf2-a686-e4886f05c101' => OperationConfig.new("/upfront/v1/upfront/subscriptions", "query", [], []),
|
41
|
+
|
42
|
+
}
|
42
43
|
|
43
|
-
|
44
|
+
protected
|
44
45
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
46
|
+
def self.getOperationConfig(uuid)
|
47
|
+
if @__store.key?(uuid)
|
48
|
+
return @__store[uuid]
|
49
|
+
end
|
50
|
+
raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
|
51
|
+
end
|
51
52
|
|
52
|
-
|
53
|
-
|
54
|
-
|
53
|
+
def self.getOperationMetadata()
|
54
|
+
return OperationMetadata.new(ResourceConfig.instance.getVersion(), ResourceConfig.instance.getHost(), ResourceConfig.instance.getContext())
|
55
|
+
end
|
55
56
|
|
56
|
-
|
57
|
+
public
|
57
58
|
|
58
59
|
|
59
60
|
|
60
61
|
|
61
62
|
|
62
63
|
|
63
|
-
def self.query(criteria)
|
64
|
-
#
|
65
|
-
#Query objects of type Subscriptions by id and optional criteria
|
66
|
-
#@param type criteria
|
67
|
-
#@return Subscriptions object representing the response.
|
68
|
-
#
|
69
64
|
|
70
|
-
|
71
|
-
|
65
|
+
def self.query(criteria)
|
66
|
+
#
|
67
|
+
#Query objects of type Subscriptions by id and optional criteria
|
68
|
+
#@param [Dict] criteria
|
69
|
+
#@return [Subscriptions] object representing the response.
|
70
|
+
#@raise [APIException] an exception from the response status
|
71
|
+
#
|
72
72
|
|
73
|
-
|
74
|
-
|
75
|
-
|
73
|
+
return self.execute("5b3ab3b6-2f2a-4cf2-a686-e4886f05c101",Subscriptions.new(criteria))
|
74
|
+
end
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
76
80
|
end
|
77
81
|
|
78
82
|
|
@@ -1,7 +1,9 @@
|
|
1
1
|
require 'mastercard_api_core'
|
2
|
-
|
2
|
+
|
3
|
+
require 'mastercard/api/retaillocationinsights/resourceconfig'
|
4
|
+
|
5
|
+
require 'mastercard/api/retaillocationinsights/merchantindustries'
|
3
6
|
require 'mastercard/api/retaillocationinsights/retailunitmerchants'
|
4
|
-
require 'mastercard/api/retaillocationinsights/retailunitsmetrics'
|
5
7
|
require 'mastercard/api/retaillocationinsights/retailunits'
|
6
|
-
require 'mastercard/api/retaillocationinsights/
|
8
|
+
require 'mastercard/api/retaillocationinsights/retailunitsmetrics'
|
7
9
|
require 'mastercard/api/retaillocationinsights/subscriptions'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mastercard_retaillocationinsights
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
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: 2017-02-03 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.
|
19
|
+
version: 1.4.0
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 1.
|
22
|
+
version: 1.4.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.
|
29
|
+
version: 1.4.0
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 1.
|
32
|
+
version: 1.4.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: ci_reporter_minitest
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,10 +52,10 @@ extensions: []
|
|
52
52
|
extra_rdoc_files: []
|
53
53
|
files:
|
54
54
|
- lib/mastercard/api/retaillocationinsights/merchantindustries.rb
|
55
|
+
- lib/mastercard/api/retaillocationinsights/resourceconfig.rb
|
55
56
|
- lib/mastercard/api/retaillocationinsights/retailunitmerchants.rb
|
56
57
|
- lib/mastercard/api/retaillocationinsights/retailunits.rb
|
57
58
|
- lib/mastercard/api/retaillocationinsights/retailunitsmetrics.rb
|
58
|
-
- lib/mastercard/api/retaillocationinsights/skdconfig.rb
|
59
59
|
- lib/mastercard/api/retaillocationinsights/subscriptions.rb
|
60
60
|
- lib/mastercard_retaillocationinsights.rb
|
61
61
|
homepage: https://developer.mastercard.com
|