Module: Aws::Record::DefaultMarshaler

Defined in:
lib/aws-record/record/attribute.rb

Overview

This is an identity marshaler, which performs no changes for type casting or serialization. It is generally not recommended for use.

Class Method Summary collapse

Class Method Details

.serialize(raw_value, options = {}) ⇒ Object



122
123
124
# File 'lib/aws-record/record/attribute.rb', line 122

def self.serialize(raw_value, options = {})
  raw_value
end

.type_cast(raw_value, options = {}) ⇒ Object



118
119
120
# File 'lib/aws-record/record/attribute.rb', line 118

def self.type_cast(raw_value, options = {})
  raw_value
end