Class: OpenActive::Models::Schema::MonetaryAmount

Inherits:
StructuredValue show all
Defined in:
lib/openactive/models/schema/monetary_amount.rb

Instance Attribute Summary collapse

Attributes inherited from Thing

#additional_type, #alternate_name, #description, #disambiguating_description, #identifier, #image, #main_entity_of_page, #name, #potential_action, #same_as, #subject_of, #url

Attributes inherited from JsonLdModel

#context, #id

Method Summary

Methods inherited from BaseModel

#assign_attributes, define_property, deserialize, #deserialize, deserialize_class, #initialize, #serialize, serialize, #set_property, #to_json

Methods included from Concerns::TypeChecker

#check_types, included

Methods included from Concerns::JsonLdSerializable

included, #to_h, #values

Constructor Details

This class inherits a constructor from OpenActive::BaseModel

Instance Attribute Details

#currencyString

Returns:

  • (String)


32
33
34
# File 'lib/openactive/models/schema/monetary_amount.rb', line 32

def currency
  @currency
end

#max_valueBigDecimal?

Returns:

  • (BigDecimal, nil)


12
13
14
# File 'lib/openactive/models/schema/monetary_amount.rb', line 12

def max_value
  @max_value
end

#min_valueBigDecimal?

Returns:

  • (BigDecimal, nil)


46
47
48
# File 'lib/openactive/models/schema/monetary_amount.rb', line 46

def min_value
  @min_value
end

#typeString

Returns:

  • (String)


7
8
9
# File 'lib/openactive/models/schema/monetary_amount.rb', line 7

def type
  "schema:MonetaryAmount"
end

#valid_fromDateTime, ...

Returns:

  • (DateTime, Date, nil)


25
26
27
# File 'lib/openactive/models/schema/monetary_amount.rb', line 25

def valid_from
  @valid_from
end

#valid_throughDate, ...

Returns:

  • (Date, DateTime, nil)


18
19
20
# File 'lib/openactive/models/schema/monetary_amount.rb', line 18

def valid_through
  @valid_through
end

#valueOpenActive::Models::Schema::StructuredValue, ...

Returns:



37
38
39
# File 'lib/openactive/models/schema/monetary_amount.rb', line 37

def value
  @value
end