Class: JSONAPI::Consumer::Schema::Property

Inherits:
Struct
  • Object
show all
Defined in:
lib/jsonapi/consumer/schema.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#defaultObject

Returns the value of attribute default

Returns:

  • (Object)

    the current value of default



97
98
99
# File 'lib/jsonapi/consumer/schema.rb', line 97

def default
  @default
end

#nameObject

Returns the value of attribute name

Returns:

  • (Object)

    the current value of name



97
98
99
# File 'lib/jsonapi/consumer/schema.rb', line 97

def name
  @name
end

#typeObject

Returns the value of attribute type

Returns:

  • (Object)

    the current value of type



97
98
99
# File 'lib/jsonapi/consumer/schema.rb', line 97

def type
  @type
end

Instance Method Details

#cast(value) ⇒ Object



98
99
100
101
102
103
104
# File 'lib/jsonapi/consumer/schema.rb', line 98

def cast(value)
  return nil if value.nil?
  return value if type.nil?
  type_caster = TypeFactory.type_for(type)
  return value if type_caster.nil?
  type_caster.cast(value, default)
end