lib/phrase/models/authorization_with_token.rb in phrase-2.18.0 vs lib/phrase/models/authorization_with_token.rb in phrase-2.19.0

- old
+ new

@@ -57,12 +57,11 @@ end # List of class defined in allOf (OpenAPI v3) def self.openapi_all_of [ - :'Authorization', - :'AuthorizationWithToken1' + :'Authorization' ] end # Initializes the object # @param [Hash] attributes Model attributes in the form of hash @@ -194,10 +193,12 @@ case type.to_sym when :DateTime DateTime.parse(value) when :Date Date.parse(value) + when :Time + Time.parse(value) when :String value.to_s when :Integer value.to_i when :Float @@ -247,10 +248,10 @@ value = self.send(attr) if value.nil? is_nullable = self.class.openapi_nullable.include?(attr) next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end - + hash[param] = _to_hash(value) end hash end