authress-sdk 2.0.36.0 → 2.0.39.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/authress-sdk/api/access_records_api.rb +6 -6
- data/lib/authress-sdk/api/accounts_api.rb +9 -9
- data/lib/authress-sdk/api/metadata_api.rb +6 -6
- data/lib/authress-sdk/api/resource_permissions_api.rb +9 -9
- data/lib/authress-sdk/api/roles_api.rb +9 -9
- data/lib/authress-sdk/api/service_clients_api.rb +15 -15
- data/lib/authress-sdk/api/user_permissions_api.rb +9 -9
- data/lib/authress-sdk/api/users_api.rb +134 -0
- data/lib/authress-sdk/models/{permission_response.rb → permission_collection.rb} +3 -3
- data/lib/authress-sdk/models/{v1resourcesresource_uri_permissions.rb → user_identity.rb} +40 -38
- data/lib/authress-sdk/models/{inline_response_200_6.rb → user_identity_collection.rb} +5 -5
- metadata +6 -28
- data/lib/authress-sdk/models/inline_response_200.rb +0 -240
- data/lib/authress-sdk/models/inline_response_200_1.rb +0 -229
- data/lib/authress-sdk/models/inline_response_200_10.rb +0 -248
- data/lib/authress-sdk/models/inline_response_200_11.rb +0 -204
- data/lib/authress-sdk/models/inline_response_200_12.rb +0 -206
- data/lib/authress-sdk/models/inline_response_200_13.rb +0 -222
- data/lib/authress-sdk/models/inline_response_200_14.rb +0 -239
- data/lib/authress-sdk/models/inline_response_200_15.rb +0 -235
- data/lib/authress-sdk/models/inline_response_200_2.rb +0 -231
- data/lib/authress-sdk/models/inline_response_200_3.rb +0 -253
- data/lib/authress-sdk/models/inline_response_200_4.rb +0 -221
- data/lib/authress-sdk/models/inline_response_200_5.rb +0 -206
- data/lib/authress-sdk/models/inline_response_200_7.rb +0 -222
- data/lib/authress-sdk/models/inline_response_200_9.rb +0 -261
- data/lib/authress-sdk/models/v1clients_options.rb +0 -211
- data/lib/authress-sdk/models/v1records_account.rb +0 -204
- data/lib/authress-sdk/models/v1records_links.rb +0 -204
- data/lib/authress-sdk/models/v1records_links_self.rb +0 -216
- data/lib/authress-sdk/models/v1records_users.rb +0 -205
- data/lib/authress-sdk/models/v1roles_permissions.rb +0 -251
- data/lib/authress-sdk/models/v1usersuser_idresourcesresource_urimetadata_account.rb +0 -199
- data/lib/authress-sdk/models/v1usersuser_idtokens_resources.rb +0 -205
- data/lib/authress-sdk/models/v1usersuser_idtokens_statements.rb +0 -222
@@ -1,204 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
|
3
|
-
=end
|
4
|
-
|
5
|
-
require 'date'
|
6
|
-
|
7
|
-
module AuthressSdk
|
8
|
-
class V1recordsLinks
|
9
|
-
attr_accessor :_self
|
10
|
-
|
11
|
-
# Attribute mapping from ruby-style variable name to JSON key.
|
12
|
-
def self.attribute_map
|
13
|
-
{
|
14
|
-
:'_self' => :'self'
|
15
|
-
}
|
16
|
-
end
|
17
|
-
|
18
|
-
# Attribute type mapping.
|
19
|
-
def self.openapi_types
|
20
|
-
{
|
21
|
-
:'_self' => :'Object'
|
22
|
-
}
|
23
|
-
end
|
24
|
-
|
25
|
-
# List of attributes with nullable: true
|
26
|
-
def self.openapi_nullable
|
27
|
-
Set.new([
|
28
|
-
])
|
29
|
-
end
|
30
|
-
|
31
|
-
# Initializes the object
|
32
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
33
|
-
def initialize(attributes = {})
|
34
|
-
if (!attributes.is_a?(Hash))
|
35
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `AuthressSdk::V1recordsLinks` initialize method"
|
36
|
-
end
|
37
|
-
|
38
|
-
# check to see if the attribute exists and convert string to symbol for hash key
|
39
|
-
attributes = attributes.each_with_object({}) { |(k, v), h|
|
40
|
-
if (!self.class.attribute_map.key?(k.to_sym))
|
41
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `AuthressSdk::V1recordsLinks`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
42
|
-
end
|
43
|
-
h[k.to_sym] = v
|
44
|
-
}
|
45
|
-
|
46
|
-
if attributes.key?(:'_self')
|
47
|
-
self._self = attributes[:'_self']
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
# Show invalid properties with the reasons. Usually used together with valid?
|
52
|
-
# @return Array for valid properties with the reasons
|
53
|
-
def list_invalid_properties
|
54
|
-
invalid_properties = Array.new
|
55
|
-
if @_self.nil?
|
56
|
-
invalid_properties.push('invalid value for "_self", _self cannot be nil.')
|
57
|
-
end
|
58
|
-
|
59
|
-
invalid_properties
|
60
|
-
end
|
61
|
-
|
62
|
-
# Check to see if the all the properties in the model are valid
|
63
|
-
# @return true if the model is valid
|
64
|
-
def valid?
|
65
|
-
return false if @_self.nil?
|
66
|
-
true
|
67
|
-
end
|
68
|
-
|
69
|
-
# Checks equality by comparing each attribute.
|
70
|
-
# @param [Object] Object to be compared
|
71
|
-
def ==(o)
|
72
|
-
return true if self.equal?(o)
|
73
|
-
self.class == o.class &&
|
74
|
-
_self == o._self
|
75
|
-
end
|
76
|
-
|
77
|
-
# @see the `==` method
|
78
|
-
# @param [Object] Object to be compared
|
79
|
-
def eql?(o)
|
80
|
-
self == o
|
81
|
-
end
|
82
|
-
|
83
|
-
# Calculates hash code according to all attributes.
|
84
|
-
# @return [Integer] Hash code
|
85
|
-
def hash
|
86
|
-
[_self].hash
|
87
|
-
end
|
88
|
-
|
89
|
-
# Builds the object from hash
|
90
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
91
|
-
# @return [Object] Returns the model itself
|
92
|
-
def self.build_from_hash(attributes)
|
93
|
-
new.build_from_hash(attributes)
|
94
|
-
end
|
95
|
-
|
96
|
-
# Builds the object from hash
|
97
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
98
|
-
# @return [Object] Returns the model itself
|
99
|
-
def build_from_hash(attributes)
|
100
|
-
return nil unless attributes.is_a?(Hash)
|
101
|
-
self.class.openapi_types.each_pair do |key, type|
|
102
|
-
if type =~ /\AArray<(.*)>/i
|
103
|
-
# check to ensure the input is an array given that the attribute
|
104
|
-
# is documented as an array but the input is not
|
105
|
-
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
106
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
107
|
-
end
|
108
|
-
elsif !attributes[self.class.attribute_map[key]].nil?
|
109
|
-
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
110
|
-
elsif attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
111
|
-
self.send("#{key}=", nil)
|
112
|
-
end
|
113
|
-
end
|
114
|
-
|
115
|
-
self
|
116
|
-
end
|
117
|
-
|
118
|
-
# Deserializes the data based on type
|
119
|
-
# @param string type Data type
|
120
|
-
# @param string value Value to be deserialized
|
121
|
-
# @return [Object] Deserialized data
|
122
|
-
def _deserialize(type, value)
|
123
|
-
case type.to_sym
|
124
|
-
when :DateTime
|
125
|
-
DateTime.parse(value)
|
126
|
-
when :Date
|
127
|
-
Date.parse(value)
|
128
|
-
when :String
|
129
|
-
value.to_s
|
130
|
-
when :Integer
|
131
|
-
value.to_i
|
132
|
-
when :Float
|
133
|
-
value.to_f
|
134
|
-
when :Boolean
|
135
|
-
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
136
|
-
true
|
137
|
-
else
|
138
|
-
false
|
139
|
-
end
|
140
|
-
when :Object
|
141
|
-
# generic object (usually a Hash), return directly
|
142
|
-
value
|
143
|
-
when /\AArray<(?<inner_type>.+)>\z/
|
144
|
-
inner_type = Regexp.last_match[:inner_type]
|
145
|
-
value.map { |v| _deserialize(inner_type, v) }
|
146
|
-
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
147
|
-
k_type = Regexp.last_match[:k_type]
|
148
|
-
v_type = Regexp.last_match[:v_type]
|
149
|
-
{}.tap do |hash|
|
150
|
-
value.each do |k, v|
|
151
|
-
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
152
|
-
end
|
153
|
-
end
|
154
|
-
else # model
|
155
|
-
AuthressSdk.const_get(type).build_from_hash(value)
|
156
|
-
end
|
157
|
-
end
|
158
|
-
|
159
|
-
# Returns the string representation of the object
|
160
|
-
# @return [String] String presentation of the object
|
161
|
-
def to_s
|
162
|
-
to_hash.to_s
|
163
|
-
end
|
164
|
-
|
165
|
-
# to_body is an alias to to_hash (backward compatibility)
|
166
|
-
# @return [Hash] Returns the object in the form of hash
|
167
|
-
def to_body
|
168
|
-
to_hash
|
169
|
-
end
|
170
|
-
|
171
|
-
# Returns the object in the form of hash
|
172
|
-
# @return [Hash] Returns the object in the form of hash
|
173
|
-
def to_hash
|
174
|
-
hash = {}
|
175
|
-
self.class.attribute_map.each_pair do |attr, param|
|
176
|
-
value = self.send(attr)
|
177
|
-
if value.nil?
|
178
|
-
is_nullable = self.class.openapi_nullable.include?(attr)
|
179
|
-
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
180
|
-
end
|
181
|
-
|
182
|
-
hash[param] = _to_hash(value)
|
183
|
-
end
|
184
|
-
hash
|
185
|
-
end
|
186
|
-
|
187
|
-
# Outputs non-array value in the form of hash
|
188
|
-
# For object, use to_hash. Otherwise, just return the value
|
189
|
-
# @param [Object] value Any valid value
|
190
|
-
# @return [Hash] Returns the value in the form of hash
|
191
|
-
def _to_hash(value)
|
192
|
-
if value.is_a?(Array)
|
193
|
-
value.compact.map { |v| _to_hash(v) }
|
194
|
-
elsif value.is_a?(Hash)
|
195
|
-
{}.tap do |hash|
|
196
|
-
value.each { |k, v| hash[k] = _to_hash(v) }
|
197
|
-
end
|
198
|
-
elsif value.respond_to? :to_hash
|
199
|
-
value.to_hash
|
200
|
-
else
|
201
|
-
value
|
202
|
-
end
|
203
|
-
end end
|
204
|
-
end
|
@@ -1,216 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
|
3
|
-
=end
|
4
|
-
|
5
|
-
require 'date'
|
6
|
-
|
7
|
-
module AuthressSdk
|
8
|
-
# A self link pointing to this request url
|
9
|
-
class V1recordsLinksSelf
|
10
|
-
# The absolute url pointing to the reference resource.
|
11
|
-
attr_accessor :href
|
12
|
-
|
13
|
-
# Optional property indicating the type of link if it is not a default IANA approved global link relation.
|
14
|
-
attr_accessor :rel
|
15
|
-
|
16
|
-
# Attribute mapping from ruby-style variable name to JSON key.
|
17
|
-
def self.attribute_map
|
18
|
-
{
|
19
|
-
:'href' => :'href',
|
20
|
-
:'rel' => :'rel'
|
21
|
-
}
|
22
|
-
end
|
23
|
-
|
24
|
-
# Attribute type mapping.
|
25
|
-
def self.openapi_types
|
26
|
-
{
|
27
|
-
:'href' => :'Object',
|
28
|
-
:'rel' => :'Object'
|
29
|
-
}
|
30
|
-
end
|
31
|
-
|
32
|
-
# List of attributes with nullable: true
|
33
|
-
def self.openapi_nullable
|
34
|
-
Set.new([
|
35
|
-
])
|
36
|
-
end
|
37
|
-
|
38
|
-
# Initializes the object
|
39
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
40
|
-
def initialize(attributes = {})
|
41
|
-
if (!attributes.is_a?(Hash))
|
42
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `AuthressSdk::V1recordsLinksSelf` initialize method"
|
43
|
-
end
|
44
|
-
|
45
|
-
# check to see if the attribute exists and convert string to symbol for hash key
|
46
|
-
attributes = attributes.each_with_object({}) { |(k, v), h|
|
47
|
-
if (!self.class.attribute_map.key?(k.to_sym))
|
48
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `AuthressSdk::V1recordsLinksSelf`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
49
|
-
end
|
50
|
-
h[k.to_sym] = v
|
51
|
-
}
|
52
|
-
|
53
|
-
if attributes.key?(:'href')
|
54
|
-
self.href = attributes[:'href']
|
55
|
-
end
|
56
|
-
|
57
|
-
if attributes.key?(:'rel')
|
58
|
-
self.rel = attributes[:'rel']
|
59
|
-
end
|
60
|
-
end
|
61
|
-
|
62
|
-
# Show invalid properties with the reasons. Usually used together with valid?
|
63
|
-
# @return Array for valid properties with the reasons
|
64
|
-
def list_invalid_properties
|
65
|
-
invalid_properties = Array.new
|
66
|
-
if @href.nil?
|
67
|
-
invalid_properties.push('invalid value for "href", href cannot be nil.')
|
68
|
-
end
|
69
|
-
|
70
|
-
invalid_properties
|
71
|
-
end
|
72
|
-
|
73
|
-
# Check to see if the all the properties in the model are valid
|
74
|
-
# @return true if the model is valid
|
75
|
-
def valid?
|
76
|
-
return false if @href.nil?
|
77
|
-
true
|
78
|
-
end
|
79
|
-
|
80
|
-
# Checks equality by comparing each attribute.
|
81
|
-
# @param [Object] Object to be compared
|
82
|
-
def ==(o)
|
83
|
-
return true if self.equal?(o)
|
84
|
-
self.class == o.class &&
|
85
|
-
href == o.href &&
|
86
|
-
rel == o.rel
|
87
|
-
end
|
88
|
-
|
89
|
-
# @see the `==` method
|
90
|
-
# @param [Object] Object to be compared
|
91
|
-
def eql?(o)
|
92
|
-
self == o
|
93
|
-
end
|
94
|
-
|
95
|
-
# Calculates hash code according to all attributes.
|
96
|
-
# @return [Integer] Hash code
|
97
|
-
def hash
|
98
|
-
[href, rel].hash
|
99
|
-
end
|
100
|
-
|
101
|
-
# Builds the object from hash
|
102
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
103
|
-
# @return [Object] Returns the model itself
|
104
|
-
def self.build_from_hash(attributes)
|
105
|
-
new.build_from_hash(attributes)
|
106
|
-
end
|
107
|
-
|
108
|
-
# Builds the object from hash
|
109
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
110
|
-
# @return [Object] Returns the model itself
|
111
|
-
def build_from_hash(attributes)
|
112
|
-
return nil unless attributes.is_a?(Hash)
|
113
|
-
self.class.openapi_types.each_pair do |key, type|
|
114
|
-
if type =~ /\AArray<(.*)>/i
|
115
|
-
# check to ensure the input is an array given that the attribute
|
116
|
-
# is documented as an array but the input is not
|
117
|
-
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
118
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
119
|
-
end
|
120
|
-
elsif !attributes[self.class.attribute_map[key]].nil?
|
121
|
-
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
122
|
-
elsif attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
123
|
-
self.send("#{key}=", nil)
|
124
|
-
end
|
125
|
-
end
|
126
|
-
|
127
|
-
self
|
128
|
-
end
|
129
|
-
|
130
|
-
# Deserializes the data based on type
|
131
|
-
# @param string type Data type
|
132
|
-
# @param string value Value to be deserialized
|
133
|
-
# @return [Object] Deserialized data
|
134
|
-
def _deserialize(type, value)
|
135
|
-
case type.to_sym
|
136
|
-
when :DateTime
|
137
|
-
DateTime.parse(value)
|
138
|
-
when :Date
|
139
|
-
Date.parse(value)
|
140
|
-
when :String
|
141
|
-
value.to_s
|
142
|
-
when :Integer
|
143
|
-
value.to_i
|
144
|
-
when :Float
|
145
|
-
value.to_f
|
146
|
-
when :Boolean
|
147
|
-
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
148
|
-
true
|
149
|
-
else
|
150
|
-
false
|
151
|
-
end
|
152
|
-
when :Object
|
153
|
-
# generic object (usually a Hash), return directly
|
154
|
-
value
|
155
|
-
when /\AArray<(?<inner_type>.+)>\z/
|
156
|
-
inner_type = Regexp.last_match[:inner_type]
|
157
|
-
value.map { |v| _deserialize(inner_type, v) }
|
158
|
-
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
159
|
-
k_type = Regexp.last_match[:k_type]
|
160
|
-
v_type = Regexp.last_match[:v_type]
|
161
|
-
{}.tap do |hash|
|
162
|
-
value.each do |k, v|
|
163
|
-
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
164
|
-
end
|
165
|
-
end
|
166
|
-
else # model
|
167
|
-
AuthressSdk.const_get(type).build_from_hash(value)
|
168
|
-
end
|
169
|
-
end
|
170
|
-
|
171
|
-
# Returns the string representation of the object
|
172
|
-
# @return [String] String presentation of the object
|
173
|
-
def to_s
|
174
|
-
to_hash.to_s
|
175
|
-
end
|
176
|
-
|
177
|
-
# to_body is an alias to to_hash (backward compatibility)
|
178
|
-
# @return [Hash] Returns the object in the form of hash
|
179
|
-
def to_body
|
180
|
-
to_hash
|
181
|
-
end
|
182
|
-
|
183
|
-
# Returns the object in the form of hash
|
184
|
-
# @return [Hash] Returns the object in the form of hash
|
185
|
-
def to_hash
|
186
|
-
hash = {}
|
187
|
-
self.class.attribute_map.each_pair do |attr, param|
|
188
|
-
value = self.send(attr)
|
189
|
-
if value.nil?
|
190
|
-
is_nullable = self.class.openapi_nullable.include?(attr)
|
191
|
-
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
192
|
-
end
|
193
|
-
|
194
|
-
hash[param] = _to_hash(value)
|
195
|
-
end
|
196
|
-
hash
|
197
|
-
end
|
198
|
-
|
199
|
-
# Outputs non-array value in the form of hash
|
200
|
-
# For object, use to_hash. Otherwise, just return the value
|
201
|
-
# @param [Object] value Any valid value
|
202
|
-
# @return [Hash] Returns the value in the form of hash
|
203
|
-
def _to_hash(value)
|
204
|
-
if value.is_a?(Array)
|
205
|
-
value.compact.map { |v| _to_hash(v) }
|
206
|
-
elsif value.is_a?(Hash)
|
207
|
-
{}.tap do |hash|
|
208
|
-
value.each { |k, v| hash[k] = _to_hash(v) }
|
209
|
-
end
|
210
|
-
elsif value.respond_to? :to_hash
|
211
|
-
value.to_hash
|
212
|
-
else
|
213
|
-
value
|
214
|
-
end
|
215
|
-
end end
|
216
|
-
end
|
@@ -1,205 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
|
3
|
-
=end
|
4
|
-
|
5
|
-
require 'date'
|
6
|
-
|
7
|
-
module AuthressSdk
|
8
|
-
# A user object that identifies a user.
|
9
|
-
class V1recordsUsers
|
10
|
-
attr_accessor :user_id
|
11
|
-
|
12
|
-
# Attribute mapping from ruby-style variable name to JSON key.
|
13
|
-
def self.attribute_map
|
14
|
-
{
|
15
|
-
:'user_id' => :'userId'
|
16
|
-
}
|
17
|
-
end
|
18
|
-
|
19
|
-
# Attribute type mapping.
|
20
|
-
def self.openapi_types
|
21
|
-
{
|
22
|
-
:'user_id' => :'Object'
|
23
|
-
}
|
24
|
-
end
|
25
|
-
|
26
|
-
# List of attributes with nullable: true
|
27
|
-
def self.openapi_nullable
|
28
|
-
Set.new([
|
29
|
-
])
|
30
|
-
end
|
31
|
-
|
32
|
-
# Initializes the object
|
33
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
34
|
-
def initialize(attributes = {})
|
35
|
-
if (!attributes.is_a?(Hash))
|
36
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `AuthressSdk::V1recordsUsers` initialize method"
|
37
|
-
end
|
38
|
-
|
39
|
-
# check to see if the attribute exists and convert string to symbol for hash key
|
40
|
-
attributes = attributes.each_with_object({}) { |(k, v), h|
|
41
|
-
if (!self.class.attribute_map.key?(k.to_sym))
|
42
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `AuthressSdk::V1recordsUsers`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
43
|
-
end
|
44
|
-
h[k.to_sym] = v
|
45
|
-
}
|
46
|
-
|
47
|
-
if attributes.key?(:'user_id')
|
48
|
-
self.user_id = attributes[:'user_id']
|
49
|
-
end
|
50
|
-
end
|
51
|
-
|
52
|
-
# Show invalid properties with the reasons. Usually used together with valid?
|
53
|
-
# @return Array for valid properties with the reasons
|
54
|
-
def list_invalid_properties
|
55
|
-
invalid_properties = Array.new
|
56
|
-
if @user_id.nil?
|
57
|
-
invalid_properties.push('invalid value for "user_id", user_id cannot be nil.')
|
58
|
-
end
|
59
|
-
|
60
|
-
invalid_properties
|
61
|
-
end
|
62
|
-
|
63
|
-
# Check to see if the all the properties in the model are valid
|
64
|
-
# @return true if the model is valid
|
65
|
-
def valid?
|
66
|
-
return false if @user_id.nil?
|
67
|
-
true
|
68
|
-
end
|
69
|
-
|
70
|
-
# Checks equality by comparing each attribute.
|
71
|
-
# @param [Object] Object to be compared
|
72
|
-
def ==(o)
|
73
|
-
return true if self.equal?(o)
|
74
|
-
self.class == o.class &&
|
75
|
-
user_id == o.user_id
|
76
|
-
end
|
77
|
-
|
78
|
-
# @see the `==` method
|
79
|
-
# @param [Object] Object to be compared
|
80
|
-
def eql?(o)
|
81
|
-
self == o
|
82
|
-
end
|
83
|
-
|
84
|
-
# Calculates hash code according to all attributes.
|
85
|
-
# @return [Integer] Hash code
|
86
|
-
def hash
|
87
|
-
[user_id].hash
|
88
|
-
end
|
89
|
-
|
90
|
-
# Builds the object from hash
|
91
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
92
|
-
# @return [Object] Returns the model itself
|
93
|
-
def self.build_from_hash(attributes)
|
94
|
-
new.build_from_hash(attributes)
|
95
|
-
end
|
96
|
-
|
97
|
-
# Builds the object from hash
|
98
|
-
# @param [Hash] attributes Model attributes in the form of hash
|
99
|
-
# @return [Object] Returns the model itself
|
100
|
-
def build_from_hash(attributes)
|
101
|
-
return nil unless attributes.is_a?(Hash)
|
102
|
-
self.class.openapi_types.each_pair do |key, type|
|
103
|
-
if type =~ /\AArray<(.*)>/i
|
104
|
-
# check to ensure the input is an array given that the attribute
|
105
|
-
# is documented as an array but the input is not
|
106
|
-
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
107
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
108
|
-
end
|
109
|
-
elsif !attributes[self.class.attribute_map[key]].nil?
|
110
|
-
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
111
|
-
elsif attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
112
|
-
self.send("#{key}=", nil)
|
113
|
-
end
|
114
|
-
end
|
115
|
-
|
116
|
-
self
|
117
|
-
end
|
118
|
-
|
119
|
-
# Deserializes the data based on type
|
120
|
-
# @param string type Data type
|
121
|
-
# @param string value Value to be deserialized
|
122
|
-
# @return [Object] Deserialized data
|
123
|
-
def _deserialize(type, value)
|
124
|
-
case type.to_sym
|
125
|
-
when :DateTime
|
126
|
-
DateTime.parse(value)
|
127
|
-
when :Date
|
128
|
-
Date.parse(value)
|
129
|
-
when :String
|
130
|
-
value.to_s
|
131
|
-
when :Integer
|
132
|
-
value.to_i
|
133
|
-
when :Float
|
134
|
-
value.to_f
|
135
|
-
when :Boolean
|
136
|
-
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
137
|
-
true
|
138
|
-
else
|
139
|
-
false
|
140
|
-
end
|
141
|
-
when :Object
|
142
|
-
# generic object (usually a Hash), return directly
|
143
|
-
value
|
144
|
-
when /\AArray<(?<inner_type>.+)>\z/
|
145
|
-
inner_type = Regexp.last_match[:inner_type]
|
146
|
-
value.map { |v| _deserialize(inner_type, v) }
|
147
|
-
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
148
|
-
k_type = Regexp.last_match[:k_type]
|
149
|
-
v_type = Regexp.last_match[:v_type]
|
150
|
-
{}.tap do |hash|
|
151
|
-
value.each do |k, v|
|
152
|
-
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
153
|
-
end
|
154
|
-
end
|
155
|
-
else # model
|
156
|
-
AuthressSdk.const_get(type).build_from_hash(value)
|
157
|
-
end
|
158
|
-
end
|
159
|
-
|
160
|
-
# Returns the string representation of the object
|
161
|
-
# @return [String] String presentation of the object
|
162
|
-
def to_s
|
163
|
-
to_hash.to_s
|
164
|
-
end
|
165
|
-
|
166
|
-
# to_body is an alias to to_hash (backward compatibility)
|
167
|
-
# @return [Hash] Returns the object in the form of hash
|
168
|
-
def to_body
|
169
|
-
to_hash
|
170
|
-
end
|
171
|
-
|
172
|
-
# Returns the object in the form of hash
|
173
|
-
# @return [Hash] Returns the object in the form of hash
|
174
|
-
def to_hash
|
175
|
-
hash = {}
|
176
|
-
self.class.attribute_map.each_pair do |attr, param|
|
177
|
-
value = self.send(attr)
|
178
|
-
if value.nil?
|
179
|
-
is_nullable = self.class.openapi_nullable.include?(attr)
|
180
|
-
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
181
|
-
end
|
182
|
-
|
183
|
-
hash[param] = _to_hash(value)
|
184
|
-
end
|
185
|
-
hash
|
186
|
-
end
|
187
|
-
|
188
|
-
# Outputs non-array value in the form of hash
|
189
|
-
# For object, use to_hash. Otherwise, just return the value
|
190
|
-
# @param [Object] value Any valid value
|
191
|
-
# @return [Hash] Returns the value in the form of hash
|
192
|
-
def _to_hash(value)
|
193
|
-
if value.is_a?(Array)
|
194
|
-
value.compact.map { |v| _to_hash(v) }
|
195
|
-
elsif value.is_a?(Hash)
|
196
|
-
{}.tap do |hash|
|
197
|
-
value.each { |k, v| hash[k] = _to_hash(v) }
|
198
|
-
end
|
199
|
-
elsif value.respond_to? :to_hash
|
200
|
-
value.to_hash
|
201
|
-
else
|
202
|
-
value
|
203
|
-
end
|
204
|
-
end end
|
205
|
-
end
|