Class: Postmen::ServiceOptionInsurance

Inherits:
Object
  • Object
show all
Includes:
Common
Defined in:
lib/postmen/service_option_insurance.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Common

#to_hash

Constructor Details

#initialize(options) ⇒ ServiceOptionInsurance

Returns a new instance of ServiceOptionInsurance.



8
9
10
11
# File 'lib/postmen/service_option_insurance.rb', line 8

def initialize(options)
  @type = options[:type]
  @insured_value = options[:insured_value]
end

Instance Attribute Details

#insured_valueObject (readonly)

Returns the value of attribute insured_value.



5
6
7
# File 'lib/postmen/service_option_insurance.rb', line 5

def insured_value
  @insured_value
end

#typeObject (readonly)

Returns the value of attribute type.



5
6
7
# File 'lib/postmen/service_option_insurance.rb', line 5

def type
  @type
end