Class: Kentaa::Api::Resources::CompanyPackage

Inherits:
Object
  • Object
show all
Defined in:
lib/kentaa/api/resources/company_package.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ CompanyPackage

Returns a new instance of CompanyPackage.



9
10
11
# File 'lib/kentaa/api/resources/company_package.rb', line 9

def initialize(data)
  @data = data
end

Instance Attribute Details

#dataObject (readonly)

Returns the value of attribute data.



7
8
9
# File 'lib/kentaa/api/resources/company_package.rb', line 7

def data
  @data
end

Instance Method Details

#amountObject



25
26
27
# File 'lib/kentaa/api/resources/company_package.rb', line 25

def amount
  BigDecimal(data[:amount])
end

#created_atObject



17
18
19
# File 'lib/kentaa/api/resources/company_package.rb', line 17

def created_at
  Time.parse(data[:created_at]) if data[:created_at]
end

#descriptionObject



33
34
35
# File 'lib/kentaa/api/resources/company_package.rb', line 33

def description
  data[:description]
end

#idObject



13
14
15
# File 'lib/kentaa/api/resources/company_package.rb', line 13

def id
  data[:id]
end

#reservation_limitObject



41
42
43
# File 'lib/kentaa/api/resources/company_package.rb', line 41

def reservation_limit
  data[:reservation_limit]
end

#reservation_typeObject



37
38
39
# File 'lib/kentaa/api/resources/company_package.rb', line 37

def reservation_type
  data[:reservation_type]
end

#titleObject



29
30
31
# File 'lib/kentaa/api/resources/company_package.rb', line 29

def title
  data[:title]
end

#updated_atObject



21
22
23
# File 'lib/kentaa/api/resources/company_package.rb', line 21

def updated_at
  Time.parse(data[:updated_at]) if data[:updated_at]
end