ory-hydra-client 1.4.10 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (89) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -1
  3. data/README.md +20 -6
  4. data/docs/AdminApi.md +4 -2
  5. data/docs/CompletedRequest.md +1 -1
  6. data/docs/ConsentRequest.md +1 -1
  7. data/docs/ConsentRequestSession.md +2 -2
  8. data/docs/ContainerWaitOKBodyError.md +17 -0
  9. data/docs/JSONWebKey.md +12 -12
  10. data/docs/LoginRequest.md +7 -7
  11. data/docs/OAuth2Client.md +3 -1
  12. data/docs/OAuth2TokenIntrospection.md +2 -2
  13. data/docs/Oauth2TokenResponse.md +6 -6
  14. data/docs/OpenIDConnectContext.md +1 -1
  15. data/docs/PluginConfig.md +47 -0
  16. data/docs/PluginConfigArgs.md +23 -0
  17. data/docs/PluginConfigInterface.md +19 -0
  18. data/docs/PluginConfigLinux.md +21 -0
  19. data/docs/PluginConfigNetwork.md +17 -0
  20. data/docs/PluginConfigRootfs.md +19 -0
  21. data/docs/PluginConfigUser.md +19 -0
  22. data/docs/PluginDevice.md +23 -0
  23. data/docs/PluginEnv.md +23 -0
  24. data/docs/PluginInterfaceType.md +21 -0
  25. data/docs/PluginMount.md +29 -0
  26. data/docs/PluginSettings.md +23 -0
  27. data/docs/PreviousConsentSession.md +3 -3
  28. data/docs/RejectRequest.md +5 -5
  29. data/docs/VolumeUsageData.md +19 -0
  30. data/lib/ory-hydra-client.rb +16 -2
  31. data/lib/ory-hydra-client/api/admin_api.rb +7 -4
  32. data/lib/ory-hydra-client/api/public_api.rb +2 -2
  33. data/lib/ory-hydra-client/api_client.rb +9 -7
  34. data/lib/ory-hydra-client/api_error.rb +2 -2
  35. data/lib/ory-hydra-client/configuration.rb +2 -2
  36. data/lib/ory-hydra-client/models/accept_consent_request.rb +2 -2
  37. data/lib/ory-hydra-client/models/accept_login_request.rb +2 -2
  38. data/lib/ory-hydra-client/models/completed_request.rb +7 -2
  39. data/lib/ory-hydra-client/models/consent_request.rb +7 -2
  40. data/lib/ory-hydra-client/models/consent_request_session.rb +6 -10
  41. data/lib/ory-hydra-client/models/container_wait_ok_body_error.rb +208 -0
  42. data/lib/ory-hydra-client/models/flush_inactive_o_auth2_tokens_request.rb +2 -2
  43. data/lib/ory-hydra-client/models/generic_error.rb +2 -2
  44. data/lib/ory-hydra-client/models/health_not_ready_status.rb +2 -3
  45. data/lib/ory-hydra-client/models/health_status.rb +2 -2
  46. data/lib/ory-hydra-client/models/json_web_key.rb +3 -15
  47. data/lib/ory-hydra-client/models/json_web_key_set.rb +3 -3
  48. data/lib/ory-hydra-client/models/json_web_key_set_generator_request.rb +2 -2
  49. data/lib/ory-hydra-client/models/login_request.rb +37 -2
  50. data/lib/ory-hydra-client/models/logout_request.rb +2 -2
  51. data/lib/ory-hydra-client/models/o_auth2_client.rb +14 -4
  52. data/lib/ory-hydra-client/models/o_auth2_token_introspection.rb +5 -7
  53. data/lib/ory-hydra-client/models/oauth2_token_response.rb +3 -9
  54. data/lib/ory-hydra-client/models/open_id_connect_context.rb +4 -6
  55. data/lib/ory-hydra-client/models/plugin_config.rb +422 -0
  56. data/lib/ory-hydra-client/models/plugin_config_args.rb +262 -0
  57. data/lib/ory-hydra-client/models/plugin_config_interface.rb +230 -0
  58. data/lib/ory-hydra-client/models/plugin_config_linux.rb +247 -0
  59. data/lib/ory-hydra-client/models/plugin_config_network.rb +213 -0
  60. data/lib/ory-hydra-client/models/plugin_config_rootfs.rb +220 -0
  61. data/lib/ory-hydra-client/models/plugin_config_user.rb +218 -0
  62. data/lib/ory-hydra-client/models/plugin_device.rb +260 -0
  63. data/lib/ory-hydra-client/models/plugin_env.rb +260 -0
  64. data/lib/ory-hydra-client/models/plugin_interface_type.rb +243 -0
  65. data/lib/ory-hydra-client/models/plugin_mount.rb +307 -0
  66. data/lib/ory-hydra-client/models/plugin_settings.rb +265 -0
  67. data/lib/ory-hydra-client/models/previous_consent_session.rb +3 -6
  68. data/lib/ory-hydra-client/models/reject_request.rb +7 -7
  69. data/lib/ory-hydra-client/models/userinfo_response.rb +3 -3
  70. data/lib/ory-hydra-client/models/version.rb +2 -3
  71. data/lib/ory-hydra-client/models/volume_usage_data.rb +228 -0
  72. data/lib/ory-hydra-client/models/well_known.rb +2 -2
  73. data/lib/ory-hydra-client/version.rb +3 -3
  74. data/ory-hydra-client.gemspec +2 -2
  75. data/spec/models/container_wait_ok_body_error_spec.rb +41 -0
  76. data/spec/models/plugin_config_args_spec.rb +59 -0
  77. data/spec/models/plugin_config_interface_spec.rb +47 -0
  78. data/spec/models/plugin_config_linux_spec.rb +53 -0
  79. data/spec/models/plugin_config_network_spec.rb +41 -0
  80. data/spec/models/plugin_config_rootfs_spec.rb +47 -0
  81. data/spec/models/plugin_config_spec.rb +131 -0
  82. data/spec/models/plugin_config_user_spec.rb +47 -0
  83. data/spec/models/plugin_device_spec.rb +59 -0
  84. data/spec/models/plugin_env_spec.rb +59 -0
  85. data/spec/models/plugin_interface_type_spec.rb +53 -0
  86. data/spec/models/plugin_mount_spec.rb +77 -0
  87. data/spec/models/plugin_settings_spec.rb +59 -0
  88. data/spec/models/volume_usage_data_spec.rb +47 -0
  89. metadata +74 -18
@@ -3,10 +3,10 @@
3
3
 
4
4
  #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
5
 
6
- The version of the OpenAPI document: latest
6
+ The version of the OpenAPI document: v1.7.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.3
9
+ OpenAPI Generator version: 4.3.1
10
10
 
11
11
  =end
12
12
 
@@ -31,8 +31,8 @@ module OryHydraClient
31
31
  # Attribute type mapping.
32
32
  def self.openapi_types
33
33
  {
34
- :'access_token' => :'Hash<String, Object>',
35
- :'id_token' => :'Hash<String, Object>'
34
+ :'access_token' => :'Object',
35
+ :'id_token' => :'Object'
36
36
  }
37
37
  end
38
38
 
@@ -58,15 +58,11 @@ module OryHydraClient
58
58
  }
59
59
 
60
60
  if attributes.key?(:'access_token')
61
- if (value = attributes[:'access_token']).is_a?(Hash)
62
- self.access_token = value
63
- end
61
+ self.access_token = attributes[:'access_token']
64
62
  end
65
63
 
66
64
  if attributes.key?(:'id_token')
67
- if (value = attributes[:'id_token']).is_a?(Hash)
68
- self.id_token = value
69
- end
65
+ self.id_token = attributes[:'id_token']
70
66
  end
71
67
  end
72
68
 
@@ -0,0 +1,208 @@
1
+ =begin
2
+ #ORY Hydra
3
+
4
+ #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
+
6
+ The version of the OpenAPI document: v1.7.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.1
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module OryHydraClient
16
+ # ContainerWaitOKBodyError container waiting error, if any
17
+ class ContainerWaitOKBodyError
18
+ # Details of an error
19
+ attr_accessor :message
20
+
21
+ # Attribute mapping from ruby-style variable name to JSON key.
22
+ def self.attribute_map
23
+ {
24
+ :'message' => :'Message'
25
+ }
26
+ end
27
+
28
+ # Attribute type mapping.
29
+ def self.openapi_types
30
+ {
31
+ :'message' => :'String'
32
+ }
33
+ end
34
+
35
+ # List of attributes with nullable: true
36
+ def self.openapi_nullable
37
+ Set.new([
38
+ ])
39
+ end
40
+
41
+ # Initializes the object
42
+ # @param [Hash] attributes Model attributes in the form of hash
43
+ def initialize(attributes = {})
44
+ if (!attributes.is_a?(Hash))
45
+ fail ArgumentError, "The input argument (attributes) must be a hash in `OryHydraClient::ContainerWaitOKBodyError` initialize method"
46
+ end
47
+
48
+ # check to see if the attribute exists and convert string to symbol for hash key
49
+ attributes = attributes.each_with_object({}) { |(k, v), h|
50
+ if (!self.class.attribute_map.key?(k.to_sym))
51
+ fail ArgumentError, "`#{k}` is not a valid attribute in `OryHydraClient::ContainerWaitOKBodyError`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
52
+ end
53
+ h[k.to_sym] = v
54
+ }
55
+
56
+ if attributes.key?(:'message')
57
+ self.message = attributes[:'message']
58
+ end
59
+ end
60
+
61
+ # Show invalid properties with the reasons. Usually used together with valid?
62
+ # @return Array for valid properties with the reasons
63
+ def list_invalid_properties
64
+ invalid_properties = Array.new
65
+ invalid_properties
66
+ end
67
+
68
+ # Check to see if the all the properties in the model are valid
69
+ # @return true if the model is valid
70
+ def valid?
71
+ true
72
+ end
73
+
74
+ # Checks equality by comparing each attribute.
75
+ # @param [Object] Object to be compared
76
+ def ==(o)
77
+ return true if self.equal?(o)
78
+ self.class == o.class &&
79
+ message == o.message
80
+ end
81
+
82
+ # @see the `==` method
83
+ # @param [Object] Object to be compared
84
+ def eql?(o)
85
+ self == o
86
+ end
87
+
88
+ # Calculates hash code according to all attributes.
89
+ # @return [Integer] Hash code
90
+ def hash
91
+ [message].hash
92
+ end
93
+
94
+ # Builds the object from hash
95
+ # @param [Hash] attributes Model attributes in the form of hash
96
+ # @return [Object] Returns the model itself
97
+ def self.build_from_hash(attributes)
98
+ new.build_from_hash(attributes)
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 build_from_hash(attributes)
105
+ return nil unless attributes.is_a?(Hash)
106
+ self.class.openapi_types.each_pair do |key, type|
107
+ if type =~ /\AArray<(.*)>/i
108
+ # check to ensure the input is an array given that the attribute
109
+ # is documented as an array but the input is not
110
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
111
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
112
+ end
113
+ elsif !attributes[self.class.attribute_map[key]].nil?
114
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
115
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
116
+ end
117
+
118
+ self
119
+ end
120
+
121
+ # Deserializes the data based on type
122
+ # @param string type Data type
123
+ # @param string value Value to be deserialized
124
+ # @return [Object] Deserialized data
125
+ def _deserialize(type, value)
126
+ case type.to_sym
127
+ when :DateTime
128
+ DateTime.parse(value)
129
+ when :Date
130
+ Date.parse(value)
131
+ when :String
132
+ value.to_s
133
+ when :Integer
134
+ value.to_i
135
+ when :Float
136
+ value.to_f
137
+ when :Boolean
138
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
139
+ true
140
+ else
141
+ false
142
+ end
143
+ when :Object
144
+ # generic object (usually a Hash), return directly
145
+ value
146
+ when /\AArray<(?<inner_type>.+)>\z/
147
+ inner_type = Regexp.last_match[:inner_type]
148
+ value.map { |v| _deserialize(inner_type, v) }
149
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
150
+ k_type = Regexp.last_match[:k_type]
151
+ v_type = Regexp.last_match[:v_type]
152
+ {}.tap do |hash|
153
+ value.each do |k, v|
154
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
155
+ end
156
+ end
157
+ else # model
158
+ OryHydraClient.const_get(type).build_from_hash(value)
159
+ end
160
+ end
161
+
162
+ # Returns the string representation of the object
163
+ # @return [String] String presentation of the object
164
+ def to_s
165
+ to_hash.to_s
166
+ end
167
+
168
+ # to_body is an alias to to_hash (backward compatibility)
169
+ # @return [Hash] Returns the object in the form of hash
170
+ def to_body
171
+ to_hash
172
+ end
173
+
174
+ # Returns the object in the form of hash
175
+ # @return [Hash] Returns the object in the form of hash
176
+ def to_hash
177
+ hash = {}
178
+ self.class.attribute_map.each_pair do |attr, param|
179
+ value = self.send(attr)
180
+ if value.nil?
181
+ is_nullable = self.class.openapi_nullable.include?(attr)
182
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
183
+ end
184
+
185
+ hash[param] = _to_hash(value)
186
+ end
187
+ hash
188
+ end
189
+
190
+ # Outputs non-array value in the form of hash
191
+ # For object, use to_hash. Otherwise, just return the value
192
+ # @param [Object] value Any valid value
193
+ # @return [Hash] Returns the value in the form of hash
194
+ def _to_hash(value)
195
+ if value.is_a?(Array)
196
+ value.compact.map { |v| _to_hash(v) }
197
+ elsif value.is_a?(Hash)
198
+ {}.tap do |hash|
199
+ value.each { |k, v| hash[k] = _to_hash(v) }
200
+ end
201
+ elsif value.respond_to? :to_hash
202
+ value.to_hash
203
+ else
204
+ value
205
+ end
206
+ end
207
+ end
208
+ end
@@ -3,10 +3,10 @@
3
3
 
4
4
  #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
5
 
6
- The version of the OpenAPI document: latest
6
+ The version of the OpenAPI document: v1.7.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.3
9
+ OpenAPI Generator version: 4.3.1
10
10
 
11
11
  =end
12
12
 
@@ -3,10 +3,10 @@
3
3
 
4
4
  #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
5
 
6
- The version of the OpenAPI document: latest
6
+ The version of the OpenAPI document: v1.7.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.3
9
+ OpenAPI Generator version: 4.3.1
10
10
 
11
11
  =end
12
12
 
@@ -3,17 +3,16 @@
3
3
 
4
4
  #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
5
 
6
- The version of the OpenAPI document: latest
6
+ The version of the OpenAPI document: v1.7.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.3
9
+ OpenAPI Generator version: 4.3.1
10
10
 
11
11
  =end
12
12
 
13
13
  require 'date'
14
14
 
15
15
  module OryHydraClient
16
- # HealthNotReadyStatus health not ready status
17
16
  class HealthNotReadyStatus
18
17
  # Errors contains a list of errors that caused the not ready status.
19
18
  attr_accessor :errors
@@ -3,10 +3,10 @@
3
3
 
4
4
  #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
5
 
6
- The version of the OpenAPI document: latest
6
+ The version of the OpenAPI document: v1.7.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.3
9
+ OpenAPI Generator version: 4.3.1
10
10
 
11
11
  =end
12
12
 
@@ -3,37 +3,31 @@
3
3
 
4
4
  #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
5
 
6
- The version of the OpenAPI document: latest
6
+ The version of the OpenAPI document: v1.7.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.3
9
+ OpenAPI Generator version: 4.3.1
10
10
 
11
11
  =end
12
12
 
13
13
  require 'date'
14
14
 
15
15
  module OryHydraClient
16
- # JSONWebKey JSONWebKey It is important that this model object is named JSONWebKey for \"swagger generate spec\" to generate only on definition of a JSONWebKey.
16
+ # It is important that this model object is named JSONWebKey for \"swagger generate spec\" to generate only on definition of a JSONWebKey.
17
17
  class JSONWebKey
18
18
  # The \"alg\" (algorithm) parameter identifies the algorithm intended for use with the key. The values used should either be registered in the IANA \"JSON Web Signature and Encryption Algorithms\" registry established by [JWA] or be a value that contains a Collision- Resistant Name.
19
19
  attr_accessor :alg
20
20
 
21
- # crv
22
21
  attr_accessor :crv
23
22
 
24
- # d
25
23
  attr_accessor :d
26
24
 
27
- # dp
28
25
  attr_accessor :dp
29
26
 
30
- # dq
31
27
  attr_accessor :dq
32
28
 
33
- # e
34
29
  attr_accessor :e
35
30
 
36
- # k
37
31
  attr_accessor :k
38
32
 
39
33
  # The \"kid\" (key ID) parameter is used to match a specific key. This is used, for instance, to choose among a set of keys within a JWK Set during key rollover. The structure of the \"kid\" value is unspecified. When \"kid\" values are used within a JWK Set, different keys within the JWK Set SHOULD use distinct \"kid\" values. (One example in which different keys might use the same \"kid\" value is if they have different \"kty\" (key type) values but are considered to be equivalent alternatives by the application using them.) The \"kid\" value is a case-sensitive string.
@@ -42,28 +36,22 @@ module OryHydraClient
42
36
  # The \"kty\" (key type) parameter identifies the cryptographic algorithm family used with the key, such as \"RSA\" or \"EC\". \"kty\" values should either be registered in the IANA \"JSON Web Key Types\" registry established by [JWA] or be a value that contains a Collision- Resistant Name. The \"kty\" value is a case-sensitive string.
43
37
  attr_accessor :kty
44
38
 
45
- # n
46
39
  attr_accessor :n
47
40
 
48
- # p
49
41
  attr_accessor :p
50
42
 
51
- # q
52
43
  attr_accessor :q
53
44
 
54
- # qi
55
45
  attr_accessor :qi
56
46
 
57
47
  # Use (\"public key use\") identifies the intended use of the public key. The \"use\" parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Values are commonly \"sig\" (signature) or \"enc\" (encryption).
58
48
  attr_accessor :use
59
49
 
60
- # x
61
50
  attr_accessor :x
62
51
 
63
52
  # The \"x5c\" (X.509 certificate chain) parameter contains a chain of one or more PKIX certificates [RFC5280]. The certificate chain is represented as a JSON array of certificate value strings. Each string in the array is a base64-encoded (Section 4 of [RFC4648] -- not base64url-encoded) DER [ITU.X690.1994] PKIX certificate value. The PKIX certificate containing the key value MUST be the first certificate.
64
53
  attr_accessor :x5c
65
54
 
66
- # y
67
55
  attr_accessor :y
68
56
 
69
57
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -3,17 +3,17 @@
3
3
 
4
4
  #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
5
 
6
- The version of the OpenAPI document: latest
6
+ The version of the OpenAPI document: v1.7.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.3
9
+ OpenAPI Generator version: 4.3.1
10
10
 
11
11
  =end
12
12
 
13
13
  require 'date'
14
14
 
15
15
  module OryHydraClient
16
- # JSONWebKeySet JSONWebKeySet JSONWebKeySet JSONWebKeySet It is important that this model object is named JSONWebKeySet for \"swagger generate spec\" to generate only on definition of a JSONWebKeySet. Since one with the same name is previously defined as client.Client.JSONWebKeys and this one is last, this one will be effectively written in the swagger spec.
16
+ # It is important that this model object is named JSONWebKeySet for \"swagger generate spec\" to generate only on definition of a JSONWebKeySet. Since one with the same name is previously defined as client.Client.JSONWebKeys and this one is last, this one will be effectively written in the swagger spec.
17
17
  class JSONWebKeySet
18
18
  # The value of the \"keys\" parameter is an array of JWK values. By default, the order of the JWK values within the array does not imply an order of preference among them, although applications of JWK Sets can choose to assign a meaning to the order for their purposes, if desired.
19
19
  attr_accessor :keys
@@ -3,10 +3,10 @@
3
3
 
4
4
  #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
5
 
6
- The version of the OpenAPI document: latest
6
+ The version of the OpenAPI document: v1.7.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.3
9
+ OpenAPI Generator version: 4.3.1
10
10
 
11
11
  =end
12
12
 
@@ -3,10 +3,10 @@
3
3
 
4
4
  #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
5
 
6
- The version of the OpenAPI document: latest
6
+ The version of the OpenAPI document: v1.7.0
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.3
9
+ OpenAPI Generator version: 4.3.1
10
10
 
11
11
  =end
12
12
 
@@ -133,12 +133,47 @@ module OryHydraClient
133
133
  # @return Array for valid properties with the reasons
134
134
  def list_invalid_properties
135
135
  invalid_properties = Array.new
136
+ if @challenge.nil?
137
+ invalid_properties.push('invalid value for "challenge", challenge cannot be nil.')
138
+ end
139
+
140
+ if @client.nil?
141
+ invalid_properties.push('invalid value for "client", client cannot be nil.')
142
+ end
143
+
144
+ if @request_url.nil?
145
+ invalid_properties.push('invalid value for "request_url", request_url cannot be nil.')
146
+ end
147
+
148
+ if @requested_access_token_audience.nil?
149
+ invalid_properties.push('invalid value for "requested_access_token_audience", requested_access_token_audience cannot be nil.')
150
+ end
151
+
152
+ if @requested_scope.nil?
153
+ invalid_properties.push('invalid value for "requested_scope", requested_scope cannot be nil.')
154
+ end
155
+
156
+ if @skip.nil?
157
+ invalid_properties.push('invalid value for "skip", skip cannot be nil.')
158
+ end
159
+
160
+ if @subject.nil?
161
+ invalid_properties.push('invalid value for "subject", subject cannot be nil.')
162
+ end
163
+
136
164
  invalid_properties
137
165
  end
138
166
 
139
167
  # Check to see if the all the properties in the model are valid
140
168
  # @return true if the model is valid
141
169
  def valid?
170
+ return false if @challenge.nil?
171
+ return false if @client.nil?
172
+ return false if @request_url.nil?
173
+ return false if @requested_access_token_audience.nil?
174
+ return false if @requested_scope.nil?
175
+ return false if @skip.nil?
176
+ return false if @subject.nil?
142
177
  true
143
178
  end
144
179