tremendous_ruby 5.5.0 → 5.7.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 +4 -4
- data/lib/tremendous/api/tremendous_api.rb +54 -256
- data/lib/tremendous/models/base_order_for_create.rb +1 -1
- data/lib/tremendous/models/create_order200_response.rb +1 -1
- data/lib/tremendous/models/create_order200_response_order.rb +403 -0
- data/lib/tremendous/models/create_order200_response_order_rewards_inner.rb +326 -0
- data/lib/tremendous/models/create_order200_response_order_rewards_inner_delivery.rb +296 -0
- data/lib/tremendous/models/{create_public_key_request.rb → create_order201_response.rb} +14 -15
- data/lib/tremendous/models/create_order_request.rb +1 -1
- data/lib/tremendous/models/create_organization.rb +51 -4
- data/lib/tremendous/models/create_organization200_response_organization.rb +20 -45
- data/lib/tremendous/models/{public_keys_response_public_keys_inner.rb → create_organization_for_response.rb} +72 -20
- data/lib/tremendous/models/{public_key.rb → create_organization_properties.rb} +57 -20
- data/lib/tremendous/models/create_organization_request.rb +7 -0
- data/lib/tremendous/models/create_report201_response.rb +231 -0
- data/lib/tremendous/models/create_report201_response_report.rb +291 -0
- data/lib/tremendous/models/create_report_request.rb +295 -0
- data/lib/tremendous/models/{create_public_key200_response.rb → create_report_request_filters.rb} +12 -17
- data/lib/tremendous/models/{create_invoice.rb → create_report_request_filters_digital_rewards.rb} +128 -32
- data/lib/tremendous/models/{create_public_key.rb → create_report_request_filters_digital_rewards_amount.rb} +22 -18
- data/lib/tremendous/models/{public_keys_response.rb → create_report_request_filters_digital_rewards_created_at.rb} +22 -19
- data/lib/tremendous/models/delivery_details.rb +0 -14
- data/lib/tremendous/models/delivery_details_with_link.rb +296 -0
- data/lib/tremendous/models/error_model.rb +11 -1
- data/lib/tremendous/models/fraud_rule400_response.rb +11 -1
- data/lib/tremendous/models/fraud_rule422_response.rb +11 -1
- data/lib/tremendous/models/fraud_rules_list_item.rb +4 -2
- data/lib/tremendous/models/generate_reward_link403_response.rb +11 -1
- data/lib/tremendous/models/invoice.rb +10 -1
- data/lib/tremendous/models/list_fraud_reviews200_response.rb +21 -4
- data/lib/tremendous/models/list_fraud_rules200_response_fraud_rules_inner.rb +4 -2
- data/lib/tremendous/models/list_funding_sources200_response_funding_sources_inner_meta.rb +37 -7
- data/lib/tremendous/models/list_funding_sources200_response_funding_sources_inner_meta_failure_details.rb +225 -0
- data/lib/tremendous/models/list_invoices200_response_invoices_inner.rb +10 -1
- data/lib/tremendous/models/list_orders200_response_orders_inner_payment.rb +4 -48
- data/lib/tremendous/models/list_rewards200_response_rewards_inner_delivery.rb +0 -14
- data/lib/tremendous/models/list_rewards401_response.rb +11 -1
- data/lib/tremendous/models/list_rewards401_response_errors.rb +4 -2
- data/lib/tremendous/models/list_rewards429_response.rb +11 -1
- data/lib/tremendous/models/order_base_payment.rb +4 -48
- data/lib/tremendous/models/order_with_link.rb +403 -0
- data/lib/tremendous/models/order_with_link_rewards_inner.rb +385 -0
- data/lib/tremendous/models/payment_details.rb +4 -48
- data/lib/tremendous/models/payout.rb +352 -0
- data/lib/tremendous/models/report.rb +291 -0
- data/lib/tremendous/models/resend_reward422_response.rb +11 -1
- data/lib/tremendous/models/resend_reward_request.rb +225 -0
- data/lib/tremendous/models/reward_for_order_create.rb +1 -1
- data/lib/tremendous/models/{single_reward_order1_reward.rb → reward_with_link.rb} +78 -16
- data/lib/tremendous/models/reward_with_link_delivery.rb +296 -0
- data/lib/tremendous/models/reward_without_link_delivery.rb +0 -14
- data/lib/tremendous/models/single_reward_order.rb +1 -1
- data/lib/tremendous/models/{single_reward_order1_payment.rb → single_reward_order_payment.rb} +3 -3
- data/lib/tremendous/models/single_reward_order_reward.rb +3 -75
- data/lib/tremendous/models/{single_reward_order1_reward_custom_fields_inner.rb → single_reward_order_reward_custom_fields_inner.rb} +3 -3
- data/lib/tremendous/models/{single_reward_order1_reward_delivery.rb → single_reward_order_reward_delivery.rb} +3 -3
- data/lib/tremendous/models/{test_public_key.rb → single_reward_order_with_link.rb} +14 -15
- data/lib/tremendous/models/single_reward_order_with_link_order.rb +403 -0
- data/lib/tremendous/version.rb +1 -1
- data/lib/tremendous.rb +27 -14
- metadata +29 -16
- data/lib/tremendous/models/single_reward_order1.rb +0 -242
- data/lib/tremendous/models/test_public_key_request.rb +0 -222
@@ -14,14 +14,19 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module Tremendous
|
17
|
-
|
18
|
-
|
19
|
-
|
17
|
+
# Amount of the rewards returned in the report
|
18
|
+
class CreateReportRequestFiltersDigitalRewardsAmount
|
19
|
+
# Minimum amount of the rewards that should be returned in the report
|
20
|
+
attr_accessor :gte
|
21
|
+
|
22
|
+
# Maximum amount of the rewards that should be returned in the report
|
23
|
+
attr_accessor :lte
|
20
24
|
|
21
25
|
# Attribute mapping from ruby-style variable name to JSON key.
|
22
26
|
def self.attribute_map
|
23
27
|
{
|
24
|
-
:'
|
28
|
+
:'gte' => :'gte',
|
29
|
+
:'lte' => :'lte'
|
25
30
|
}
|
26
31
|
end
|
27
32
|
|
@@ -33,7 +38,8 @@ module Tremendous
|
|
33
38
|
# Attribute type mapping.
|
34
39
|
def self.openapi_types
|
35
40
|
{
|
36
|
-
:'
|
41
|
+
:'gte' => :'Float',
|
42
|
+
:'lte' => :'Float'
|
37
43
|
}
|
38
44
|
end
|
39
45
|
|
@@ -47,21 +53,23 @@ module Tremendous
|
|
47
53
|
# @param [Hash] attributes Model attributes in the form of hash
|
48
54
|
def initialize(attributes = {})
|
49
55
|
if (!attributes.is_a?(Hash))
|
50
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `Tremendous::
|
56
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `Tremendous::CreateReportRequestFiltersDigitalRewardsAmount` initialize method"
|
51
57
|
end
|
52
58
|
|
53
59
|
# check to see if the attribute exists and convert string to symbol for hash key
|
54
60
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
55
61
|
if (!self.class.attribute_map.key?(k.to_sym))
|
56
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `Tremendous::
|
62
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `Tremendous::CreateReportRequestFiltersDigitalRewardsAmount`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
57
63
|
end
|
58
64
|
h[k.to_sym] = v
|
59
65
|
}
|
60
66
|
|
61
|
-
if attributes.key?(:'
|
62
|
-
self.
|
63
|
-
|
64
|
-
|
67
|
+
if attributes.key?(:'gte')
|
68
|
+
self.gte = attributes[:'gte']
|
69
|
+
end
|
70
|
+
|
71
|
+
if attributes.key?(:'lte')
|
72
|
+
self.lte = attributes[:'lte']
|
65
73
|
end
|
66
74
|
end
|
67
75
|
|
@@ -70,10 +78,6 @@ module Tremendous
|
|
70
78
|
def list_invalid_properties
|
71
79
|
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
72
80
|
invalid_properties = Array.new
|
73
|
-
if @public_key.nil?
|
74
|
-
invalid_properties.push('invalid value for "public_key", public_key cannot be nil.')
|
75
|
-
end
|
76
|
-
|
77
81
|
invalid_properties
|
78
82
|
end
|
79
83
|
|
@@ -81,7 +85,6 @@ module Tremendous
|
|
81
85
|
# @return true if the model is valid
|
82
86
|
def valid?
|
83
87
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
84
|
-
return false if @public_key.nil?
|
85
88
|
true
|
86
89
|
end
|
87
90
|
|
@@ -90,7 +93,8 @@ module Tremendous
|
|
90
93
|
def ==(o)
|
91
94
|
return true if self.equal?(o)
|
92
95
|
self.class == o.class &&
|
93
|
-
|
96
|
+
gte == o.gte &&
|
97
|
+
lte == o.lte
|
94
98
|
end
|
95
99
|
|
96
100
|
# @see the `==` method
|
@@ -102,7 +106,7 @@ module Tremendous
|
|
102
106
|
# Calculates hash code according to all attributes.
|
103
107
|
# @return [Integer] Hash code
|
104
108
|
def hash
|
105
|
-
[
|
109
|
+
[gte, lte].hash
|
106
110
|
end
|
107
111
|
|
108
112
|
# Builds the object from hash
|
@@ -14,13 +14,19 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module Tremendous
|
17
|
-
|
18
|
-
|
17
|
+
# Creation dates of rewards returned in the report
|
18
|
+
class CreateReportRequestFiltersDigitalRewardsCreatedAt
|
19
|
+
# Minimum date the reward was created
|
20
|
+
attr_accessor :gte
|
21
|
+
|
22
|
+
# Maximum date the reward was created
|
23
|
+
attr_accessor :lte
|
19
24
|
|
20
25
|
# Attribute mapping from ruby-style variable name to JSON key.
|
21
26
|
def self.attribute_map
|
22
27
|
{
|
23
|
-
:'
|
28
|
+
:'gte' => :'gte',
|
29
|
+
:'lte' => :'lte'
|
24
30
|
}
|
25
31
|
end
|
26
32
|
|
@@ -32,7 +38,8 @@ module Tremendous
|
|
32
38
|
# Attribute type mapping.
|
33
39
|
def self.openapi_types
|
34
40
|
{
|
35
|
-
:'
|
41
|
+
:'gte' => :'Date',
|
42
|
+
:'lte' => :'Date'
|
36
43
|
}
|
37
44
|
end
|
38
45
|
|
@@ -46,23 +53,23 @@ module Tremendous
|
|
46
53
|
# @param [Hash] attributes Model attributes in the form of hash
|
47
54
|
def initialize(attributes = {})
|
48
55
|
if (!attributes.is_a?(Hash))
|
49
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `Tremendous::
|
56
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `Tremendous::CreateReportRequestFiltersDigitalRewardsCreatedAt` initialize method"
|
50
57
|
end
|
51
58
|
|
52
59
|
# check to see if the attribute exists and convert string to symbol for hash key
|
53
60
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
54
61
|
if (!self.class.attribute_map.key?(k.to_sym))
|
55
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `Tremendous::
|
62
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `Tremendous::CreateReportRequestFiltersDigitalRewardsCreatedAt`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
56
63
|
end
|
57
64
|
h[k.to_sym] = v
|
58
65
|
}
|
59
66
|
|
60
|
-
if attributes.key?(:'
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
self.
|
67
|
+
if attributes.key?(:'gte')
|
68
|
+
self.gte = attributes[:'gte']
|
69
|
+
end
|
70
|
+
|
71
|
+
if attributes.key?(:'lte')
|
72
|
+
self.lte = attributes[:'lte']
|
66
73
|
end
|
67
74
|
end
|
68
75
|
|
@@ -71,10 +78,6 @@ module Tremendous
|
|
71
78
|
def list_invalid_properties
|
72
79
|
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
73
80
|
invalid_properties = Array.new
|
74
|
-
if @public_keys.nil?
|
75
|
-
invalid_properties.push('invalid value for "public_keys", public_keys cannot be nil.')
|
76
|
-
end
|
77
|
-
|
78
81
|
invalid_properties
|
79
82
|
end
|
80
83
|
|
@@ -82,7 +85,6 @@ module Tremendous
|
|
82
85
|
# @return true if the model is valid
|
83
86
|
def valid?
|
84
87
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
85
|
-
return false if @public_keys.nil?
|
86
88
|
true
|
87
89
|
end
|
88
90
|
|
@@ -91,7 +93,8 @@ module Tremendous
|
|
91
93
|
def ==(o)
|
92
94
|
return true if self.equal?(o)
|
93
95
|
self.class == o.class &&
|
94
|
-
|
96
|
+
gte == o.gte &&
|
97
|
+
lte == o.lte
|
95
98
|
end
|
96
99
|
|
97
100
|
# @see the `==` method
|
@@ -103,7 +106,7 @@ module Tremendous
|
|
103
106
|
# Calculates hash code according to all attributes.
|
104
107
|
# @return [Integer] Hash code
|
105
108
|
def hash
|
106
|
-
[
|
109
|
+
[gte, lte].hash
|
107
110
|
end
|
108
111
|
|
109
112
|
# Builds the object from hash
|
@@ -88,14 +88,10 @@ module Tremendous
|
|
88
88
|
|
89
89
|
if attributes.key?(:'method')
|
90
90
|
self.method = attributes[:'method']
|
91
|
-
else
|
92
|
-
self.method = nil
|
93
91
|
end
|
94
92
|
|
95
93
|
if attributes.key?(:'status')
|
96
94
|
self.status = attributes[:'status']
|
97
|
-
else
|
98
|
-
self.status = nil
|
99
95
|
end
|
100
96
|
end
|
101
97
|
|
@@ -104,14 +100,6 @@ module Tremendous
|
|
104
100
|
def list_invalid_properties
|
105
101
|
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
106
102
|
invalid_properties = Array.new
|
107
|
-
if @method.nil?
|
108
|
-
invalid_properties.push('invalid value for "method", method cannot be nil.')
|
109
|
-
end
|
110
|
-
|
111
|
-
if @status.nil?
|
112
|
-
invalid_properties.push('invalid value for "status", status cannot be nil.')
|
113
|
-
end
|
114
|
-
|
115
103
|
invalid_properties
|
116
104
|
end
|
117
105
|
|
@@ -119,10 +107,8 @@ module Tremendous
|
|
119
107
|
# @return true if the model is valid
|
120
108
|
def valid?
|
121
109
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
122
|
-
return false if @method.nil?
|
123
110
|
method_validator = EnumAttributeValidator.new('String', ["EMAIL", "LINK", "PHONE"])
|
124
111
|
return false unless method_validator.valid?(@method)
|
125
|
-
return false if @status.nil?
|
126
112
|
status_validator = EnumAttributeValidator.new('String', ["SCHEDULED", "FAILED", "SUCCEEDED", "PENDING"])
|
127
113
|
return false unless status_validator.valid?(@status)
|
128
114
|
true
|
@@ -0,0 +1,296 @@
|
|
1
|
+
=begin
|
2
|
+
#API Endpoints
|
3
|
+
|
4
|
+
#Deliver monetary rewards and incentives to employees, customers, survey participants, and more through the Tremendous API. For organizational tasks, like managing your organization and it's members within Tremendous, please see the Tremendous Organizational API.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2
|
7
|
+
Contact: developers@tremendous.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.8.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module Tremendous
|
17
|
+
# Details on how the reward is delivered to the recipient.
|
18
|
+
class DeliveryDetailsWithLink
|
19
|
+
# How to deliver the reward to the recipient. <table> <thead> <tr> <th>Delivery Method</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><code>EMAIL</code></td> <td>Deliver the reward to the recipient by email</td> </tr> <tr> <td><code>LINK</code></td> <td> <p>Deliver the reward to the recipient via a link.</p> <p>The link can be retrieved on a successfully ordered reward via the <code>/rewards</code> or <code>/rewards/{id}</code> endpoint. That link must then be delivered to the recipient out-of-band.</p> </td> </tr> <tr> <td><code>PHONE</code></td> <td>Deliver the reward to the recipient by SMS</td> </tr> </tbody> </table>
|
20
|
+
attr_accessor :method
|
21
|
+
|
22
|
+
# Current status of the delivery of the reward: * `SCHEDULED` - Reward is scheduled for delivery and will be delivered soon. * `FAILED` - Delivery of reward failed (e.g. email bounced). * `SUCCEEDED` - Reward was successfully delivered (email or text message delivered or reward link opened). * `PENDING` - Delivery is pending but not yet scheduled.
|
23
|
+
attr_accessor :status
|
24
|
+
|
25
|
+
# Link to redeem the reward at. You need to deliver this link to the recipient.
|
26
|
+
attr_accessor :link
|
27
|
+
|
28
|
+
class EnumAttributeValidator
|
29
|
+
attr_reader :datatype
|
30
|
+
attr_reader :allowable_values
|
31
|
+
|
32
|
+
def initialize(datatype, allowable_values)
|
33
|
+
@allowable_values = allowable_values.map do |value|
|
34
|
+
case datatype.to_s
|
35
|
+
when /Integer/i
|
36
|
+
value.to_i
|
37
|
+
when /Float/i
|
38
|
+
value.to_f
|
39
|
+
else
|
40
|
+
value
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
def valid?(value)
|
46
|
+
!value || allowable_values.include?(value)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
51
|
+
def self.attribute_map
|
52
|
+
{
|
53
|
+
:'method' => :'method',
|
54
|
+
:'status' => :'status',
|
55
|
+
:'link' => :'link'
|
56
|
+
}
|
57
|
+
end
|
58
|
+
|
59
|
+
# Returns all the JSON keys this model knows about
|
60
|
+
def self.acceptable_attributes
|
61
|
+
attribute_map.values
|
62
|
+
end
|
63
|
+
|
64
|
+
# Attribute type mapping.
|
65
|
+
def self.openapi_types
|
66
|
+
{
|
67
|
+
:'method' => :'String',
|
68
|
+
:'status' => :'String',
|
69
|
+
:'link' => :'String'
|
70
|
+
}
|
71
|
+
end
|
72
|
+
|
73
|
+
# List of attributes with nullable: true
|
74
|
+
def self.openapi_nullable
|
75
|
+
Set.new([
|
76
|
+
])
|
77
|
+
end
|
78
|
+
|
79
|
+
# Initializes the object
|
80
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
81
|
+
def initialize(attributes = {})
|
82
|
+
if (!attributes.is_a?(Hash))
|
83
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `Tremendous::DeliveryDetailsWithLink` initialize method"
|
84
|
+
end
|
85
|
+
|
86
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
87
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
88
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
89
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `Tremendous::DeliveryDetailsWithLink`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
90
|
+
end
|
91
|
+
h[k.to_sym] = v
|
92
|
+
}
|
93
|
+
|
94
|
+
if attributes.key?(:'method')
|
95
|
+
self.method = attributes[:'method']
|
96
|
+
else
|
97
|
+
self.method = nil
|
98
|
+
end
|
99
|
+
|
100
|
+
if attributes.key?(:'status')
|
101
|
+
self.status = attributes[:'status']
|
102
|
+
else
|
103
|
+
self.status = nil
|
104
|
+
end
|
105
|
+
|
106
|
+
if attributes.key?(:'link')
|
107
|
+
self.link = attributes[:'link']
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
112
|
+
# @return Array for valid properties with the reasons
|
113
|
+
def list_invalid_properties
|
114
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
115
|
+
invalid_properties = Array.new
|
116
|
+
if @method.nil?
|
117
|
+
invalid_properties.push('invalid value for "method", method cannot be nil.')
|
118
|
+
end
|
119
|
+
|
120
|
+
if @status.nil?
|
121
|
+
invalid_properties.push('invalid value for "status", status cannot be nil.')
|
122
|
+
end
|
123
|
+
|
124
|
+
invalid_properties
|
125
|
+
end
|
126
|
+
|
127
|
+
# Check to see if the all the properties in the model are valid
|
128
|
+
# @return true if the model is valid
|
129
|
+
def valid?
|
130
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
131
|
+
return false if @method.nil?
|
132
|
+
method_validator = EnumAttributeValidator.new('String', ["EMAIL", "LINK", "PHONE"])
|
133
|
+
return false unless method_validator.valid?(@method)
|
134
|
+
return false if @status.nil?
|
135
|
+
status_validator = EnumAttributeValidator.new('String', ["SCHEDULED", "FAILED", "SUCCEEDED", "PENDING"])
|
136
|
+
return false unless status_validator.valid?(@status)
|
137
|
+
true
|
138
|
+
end
|
139
|
+
|
140
|
+
# Custom attribute writer method checking allowed values (enum).
|
141
|
+
# @param [Object] method Object to be assigned
|
142
|
+
def method=(method)
|
143
|
+
validator = EnumAttributeValidator.new('String', ["EMAIL", "LINK", "PHONE"])
|
144
|
+
unless validator.valid?(method)
|
145
|
+
fail ArgumentError, "invalid value for \"method\", must be one of #{validator.allowable_values}."
|
146
|
+
end
|
147
|
+
@method = method
|
148
|
+
end
|
149
|
+
|
150
|
+
# Custom attribute writer method checking allowed values (enum).
|
151
|
+
# @param [Object] status Object to be assigned
|
152
|
+
def status=(status)
|
153
|
+
validator = EnumAttributeValidator.new('String', ["SCHEDULED", "FAILED", "SUCCEEDED", "PENDING"])
|
154
|
+
unless validator.valid?(status)
|
155
|
+
fail ArgumentError, "invalid value for \"status\", must be one of #{validator.allowable_values}."
|
156
|
+
end
|
157
|
+
@status = status
|
158
|
+
end
|
159
|
+
|
160
|
+
# Checks equality by comparing each attribute.
|
161
|
+
# @param [Object] Object to be compared
|
162
|
+
def ==(o)
|
163
|
+
return true if self.equal?(o)
|
164
|
+
self.class == o.class &&
|
165
|
+
method == o.method &&
|
166
|
+
status == o.status &&
|
167
|
+
link == o.link
|
168
|
+
end
|
169
|
+
|
170
|
+
# @see the `==` method
|
171
|
+
# @param [Object] Object to be compared
|
172
|
+
def eql?(o)
|
173
|
+
self == o
|
174
|
+
end
|
175
|
+
|
176
|
+
# Calculates hash code according to all attributes.
|
177
|
+
# @return [Integer] Hash code
|
178
|
+
def hash
|
179
|
+
[method, status, link].hash
|
180
|
+
end
|
181
|
+
|
182
|
+
# Builds the object from hash
|
183
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
184
|
+
# @return [Object] Returns the model itself
|
185
|
+
def self.build_from_hash(attributes)
|
186
|
+
return nil unless attributes.is_a?(Hash)
|
187
|
+
attributes = attributes.transform_keys(&:to_sym)
|
188
|
+
transformed_hash = {}
|
189
|
+
openapi_types.each_pair do |key, type|
|
190
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
191
|
+
transformed_hash["#{key}"] = nil
|
192
|
+
elsif type =~ /\AArray<(.*)>/i
|
193
|
+
# check to ensure the input is an array given that the attribute
|
194
|
+
# is documented as an array but the input is not
|
195
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
196
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
197
|
+
end
|
198
|
+
elsif !attributes[attribute_map[key]].nil?
|
199
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
200
|
+
end
|
201
|
+
end
|
202
|
+
new(transformed_hash)
|
203
|
+
end
|
204
|
+
|
205
|
+
# Deserializes the data based on type
|
206
|
+
# @param string type Data type
|
207
|
+
# @param string value Value to be deserialized
|
208
|
+
# @return [Object] Deserialized data
|
209
|
+
def self._deserialize(type, value)
|
210
|
+
case type.to_sym
|
211
|
+
when :Time
|
212
|
+
Time.parse(value)
|
213
|
+
when :Date
|
214
|
+
Date.parse(value)
|
215
|
+
when :String
|
216
|
+
value.to_s
|
217
|
+
when :Integer
|
218
|
+
value.to_i
|
219
|
+
when :Float
|
220
|
+
value.to_f
|
221
|
+
when :Boolean
|
222
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
223
|
+
true
|
224
|
+
else
|
225
|
+
false
|
226
|
+
end
|
227
|
+
when :Object
|
228
|
+
# generic object (usually a Hash), return directly
|
229
|
+
value
|
230
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
231
|
+
inner_type = Regexp.last_match[:inner_type]
|
232
|
+
value.map { |v| _deserialize(inner_type, v) }
|
233
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
234
|
+
k_type = Regexp.last_match[:k_type]
|
235
|
+
v_type = Regexp.last_match[:v_type]
|
236
|
+
{}.tap do |hash|
|
237
|
+
value.each do |k, v|
|
238
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
239
|
+
end
|
240
|
+
end
|
241
|
+
else # model
|
242
|
+
# models (e.g. Pet) or oneOf
|
243
|
+
klass = Tremendous.const_get(type)
|
244
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
245
|
+
end
|
246
|
+
end
|
247
|
+
|
248
|
+
# Returns the string representation of the object
|
249
|
+
# @return [String] String presentation of the object
|
250
|
+
def to_s
|
251
|
+
to_hash.to_s
|
252
|
+
end
|
253
|
+
|
254
|
+
# to_body is an alias to to_hash (backward compatibility)
|
255
|
+
# @return [Hash] Returns the object in the form of hash
|
256
|
+
def to_body
|
257
|
+
to_hash
|
258
|
+
end
|
259
|
+
|
260
|
+
# Returns the object in the form of hash
|
261
|
+
# @return [Hash] Returns the object in the form of hash
|
262
|
+
def to_hash
|
263
|
+
hash = {}
|
264
|
+
self.class.attribute_map.each_pair do |attr, param|
|
265
|
+
value = self.send(attr)
|
266
|
+
if value.nil?
|
267
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
268
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
269
|
+
end
|
270
|
+
|
271
|
+
hash[param] = _to_hash(value)
|
272
|
+
end
|
273
|
+
hash
|
274
|
+
end
|
275
|
+
|
276
|
+
# Outputs non-array value in the form of hash
|
277
|
+
# For object, use to_hash. Otherwise, just return the value
|
278
|
+
# @param [Object] value Any valid value
|
279
|
+
# @return [Hash] Returns the value in the form of hash
|
280
|
+
def _to_hash(value)
|
281
|
+
if value.is_a?(Array)
|
282
|
+
value.compact.map { |v| _to_hash(v) }
|
283
|
+
elsif value.is_a?(Hash)
|
284
|
+
{}.tap do |hash|
|
285
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
286
|
+
end
|
287
|
+
elsif value.respond_to? :to_hash
|
288
|
+
value.to_hash
|
289
|
+
else
|
290
|
+
value
|
291
|
+
end
|
292
|
+
end
|
293
|
+
|
294
|
+
end
|
295
|
+
|
296
|
+
end
|
@@ -15,11 +15,15 @@ require 'time'
|
|
15
15
|
|
16
16
|
module Tremendous
|
17
17
|
class ErrorModel
|
18
|
+
# HTTP status code of the response
|
19
|
+
attr_accessor :status
|
20
|
+
|
18
21
|
attr_accessor :errors
|
19
22
|
|
20
23
|
# Attribute mapping from ruby-style variable name to JSON key.
|
21
24
|
def self.attribute_map
|
22
25
|
{
|
26
|
+
:'status' => :'status',
|
23
27
|
:'errors' => :'errors'
|
24
28
|
}
|
25
29
|
end
|
@@ -32,6 +36,7 @@ module Tremendous
|
|
32
36
|
# Attribute type mapping.
|
33
37
|
def self.openapi_types
|
34
38
|
{
|
39
|
+
:'status' => :'Integer',
|
35
40
|
:'errors' => :'ListRewards401ResponseErrors'
|
36
41
|
}
|
37
42
|
end
|
@@ -57,6 +62,10 @@ module Tremendous
|
|
57
62
|
h[k.to_sym] = v
|
58
63
|
}
|
59
64
|
|
65
|
+
if attributes.key?(:'status')
|
66
|
+
self.status = attributes[:'status']
|
67
|
+
end
|
68
|
+
|
60
69
|
if attributes.key?(:'errors')
|
61
70
|
self.errors = attributes[:'errors']
|
62
71
|
else
|
@@ -89,6 +98,7 @@ module Tremendous
|
|
89
98
|
def ==(o)
|
90
99
|
return true if self.equal?(o)
|
91
100
|
self.class == o.class &&
|
101
|
+
status == o.status &&
|
92
102
|
errors == o.errors
|
93
103
|
end
|
94
104
|
|
@@ -101,7 +111,7 @@ module Tremendous
|
|
101
111
|
# Calculates hash code according to all attributes.
|
102
112
|
# @return [Integer] Hash code
|
103
113
|
def hash
|
104
|
-
[errors].hash
|
114
|
+
[status, errors].hash
|
105
115
|
end
|
106
116
|
|
107
117
|
# Builds the object from hash
|
@@ -15,11 +15,15 @@ require 'time'
|
|
15
15
|
|
16
16
|
module Tremendous
|
17
17
|
class FraudRule400Response
|
18
|
+
# HTTP status code of the response
|
19
|
+
attr_accessor :status
|
20
|
+
|
18
21
|
attr_accessor :errors
|
19
22
|
|
20
23
|
# Attribute mapping from ruby-style variable name to JSON key.
|
21
24
|
def self.attribute_map
|
22
25
|
{
|
26
|
+
:'status' => :'status',
|
23
27
|
:'errors' => :'errors'
|
24
28
|
}
|
25
29
|
end
|
@@ -32,6 +36,7 @@ module Tremendous
|
|
32
36
|
# Attribute type mapping.
|
33
37
|
def self.openapi_types
|
34
38
|
{
|
39
|
+
:'status' => :'Integer',
|
35
40
|
:'errors' => :'ListRewards401ResponseErrors'
|
36
41
|
}
|
37
42
|
end
|
@@ -57,6 +62,10 @@ module Tremendous
|
|
57
62
|
h[k.to_sym] = v
|
58
63
|
}
|
59
64
|
|
65
|
+
if attributes.key?(:'status')
|
66
|
+
self.status = attributes[:'status']
|
67
|
+
end
|
68
|
+
|
60
69
|
if attributes.key?(:'errors')
|
61
70
|
self.errors = attributes[:'errors']
|
62
71
|
else
|
@@ -89,6 +98,7 @@ module Tremendous
|
|
89
98
|
def ==(o)
|
90
99
|
return true if self.equal?(o)
|
91
100
|
self.class == o.class &&
|
101
|
+
status == o.status &&
|
92
102
|
errors == o.errors
|
93
103
|
end
|
94
104
|
|
@@ -101,7 +111,7 @@ module Tremendous
|
|
101
111
|
# Calculates hash code according to all attributes.
|
102
112
|
# @return [Integer] Hash code
|
103
113
|
def hash
|
104
|
-
[errors].hash
|
114
|
+
[status, errors].hash
|
105
115
|
end
|
106
116
|
|
107
117
|
# Builds the object from hash
|
@@ -15,11 +15,15 @@ require 'time'
|
|
15
15
|
|
16
16
|
module Tremendous
|
17
17
|
class FraudRule422Response
|
18
|
+
# HTTP status code of the response
|
19
|
+
attr_accessor :status
|
20
|
+
|
18
21
|
attr_accessor :errors
|
19
22
|
|
20
23
|
# Attribute mapping from ruby-style variable name to JSON key.
|
21
24
|
def self.attribute_map
|
22
25
|
{
|
26
|
+
:'status' => :'status',
|
23
27
|
:'errors' => :'errors'
|
24
28
|
}
|
25
29
|
end
|
@@ -32,6 +36,7 @@ module Tremendous
|
|
32
36
|
# Attribute type mapping.
|
33
37
|
def self.openapi_types
|
34
38
|
{
|
39
|
+
:'status' => :'Integer',
|
35
40
|
:'errors' => :'ListRewards401ResponseErrors'
|
36
41
|
}
|
37
42
|
end
|
@@ -57,6 +62,10 @@ module Tremendous
|
|
57
62
|
h[k.to_sym] = v
|
58
63
|
}
|
59
64
|
|
65
|
+
if attributes.key?(:'status')
|
66
|
+
self.status = attributes[:'status']
|
67
|
+
end
|
68
|
+
|
60
69
|
if attributes.key?(:'errors')
|
61
70
|
self.errors = attributes[:'errors']
|
62
71
|
else
|
@@ -89,6 +98,7 @@ module Tremendous
|
|
89
98
|
def ==(o)
|
90
99
|
return true if self.equal?(o)
|
91
100
|
self.class == o.class &&
|
101
|
+
status == o.status &&
|
92
102
|
errors == o.errors
|
93
103
|
end
|
94
104
|
|
@@ -101,7 +111,7 @@ module Tremendous
|
|
101
111
|
# Calculates hash code according to all attributes.
|
102
112
|
# @return [Integer] Hash code
|
103
113
|
def hash
|
104
|
-
[errors].hash
|
114
|
+
[status, errors].hash
|
105
115
|
end
|
106
116
|
|
107
117
|
# Builds the object from hash
|