lib/cloudsmith-api/models/entitlements_create.rb in cloudsmith-api-1.30.0 vs lib/cloudsmith-api/models/entitlements_create.rb in cloudsmith-api-1.33.7
- old
+ new
@@ -4,18 +4,17 @@
#The API to the Cloudsmith Service
OpenAPI spec version: v1
Contact: support@cloudsmith.io
Generated by: https://github.com/swagger-api/swagger-codegen.git
-Swagger Codegen version: 2.2.3
+Swagger Codegen version: 2.4.26
=end
require 'date'
module CloudsmithApi
-
class EntitlementsCreate
# If checked, a EULA acceptance is required for this token.
attr_accessor :eula_required
# If enabled, the token will allow downloads based on configured restrictions (if any).
@@ -58,11 +57,10 @@
attr_accessor :scheduled_reset_period
# None
attr_accessor :token
-
# Attribute mapping from ruby-style variable name to JSON key.
def self.attribute_map
{
:'eula_required' => :'eula_required',
:'is_active' => :'is_active',
@@ -107,11 +105,11 @@
# @param [Hash] attributes Model attributes in the form of hash
def initialize(attributes = {})
return unless attributes.is_a?(Hash)
# convert string to symbol for hash key
- attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
+ attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
if attributes.has_key?(:'eula_required')
self.eula_required = attributes[:'eula_required']
end
@@ -168,29 +166,28 @@
end
if attributes.has_key?(:'token')
self.token = attributes[:'token']
end
-
end
# Show invalid properties with the reasons. Usually used together with valid?
- # @return Array for valid properies with the reasons
+ # @return Array for valid properties with the reasons
def list_invalid_properties
invalid_properties = Array.new
if @name.nil?
- invalid_properties.push("invalid value for 'name', name cannot be nil.")
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
end
- return invalid_properties
+ invalid_properties
end
# Check to see if the all the properties in the model are valid
# @return true if the model is valid
def valid?
return false if @name.nil?
- return true
+ true
end
# Checks equality by comparing each attribute.
# @param [Object] Object to be compared
def ==(o)
@@ -230,14 +227,14 @@
# @return [Object] Returns the model itself
def build_from_hash(attributes)
return nil unless attributes.is_a?(Hash)
self.class.swagger_types.each_pair do |key, type|
if type =~ /\AArray<(.*)>/i
- # check to ensure the input is an array given that the the attribute
+ # check to ensure the input is an array given that the attribute
# is documented as an array but the input is not
if attributes[self.class.attribute_map[key]].is_a?(Array)
- self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
end
elsif !attributes[self.class.attribute_map[key]].nil?
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
end # or else data not found in attributes(hash), not an issue as the data can be optional
end
@@ -315,11 +312,11 @@
# For object, use to_hash. Otherwise, just return the value
# @param [Object] value Any valid value
# @return [Hash] Returns the value in the form of hash
def _to_hash(value)
if value.is_a?(Array)
- value.compact.map{ |v| _to_hash(v) }
+ value.compact.map { |v| _to_hash(v) }
elsif value.is_a?(Hash)
{}.tap do |hash|
value.each { |k, v| hash[k] = _to_hash(v) }
end
elsif value.respond_to? :to_hash
@@ -328,7 +325,6 @@
value
end
end
end
-
end