Class: Seatsio::TableBookingConfig
- Inherits:
-
Object
- Object
- Seatsio::TableBookingConfig
- Defined in:
- lib/seatsio/domain.rb
Instance Attribute Summary collapse
-
#mode ⇒ Object
readonly
Returns the value of attribute mode.
-
#tables ⇒ Object
readonly
Returns the value of attribute tables.
Class Method Summary collapse
- .all_by_seat ⇒ Object
- .all_by_table ⇒ Object
- .custom(tables) ⇒ Object
- .from_json(data) ⇒ Object
- .inherit ⇒ Object
Instance Method Summary collapse
-
#initialize(mode, tables = nil) ⇒ TableBookingConfig
constructor
A new instance of TableBookingConfig.
Constructor Details
#initialize(mode, tables = nil) ⇒ TableBookingConfig
Returns a new instance of TableBookingConfig.
98 99 100 101 |
# File 'lib/seatsio/domain.rb', line 98 def initialize(mode, tables = nil) @mode = mode @tables = tables end |
Instance Attribute Details
#mode ⇒ Object (readonly)
Returns the value of attribute mode.
96 97 98 |
# File 'lib/seatsio/domain.rb', line 96 def mode @mode end |
#tables ⇒ Object (readonly)
Returns the value of attribute tables.
96 97 98 |
# File 'lib/seatsio/domain.rb', line 96 def tables @tables end |
Class Method Details
.all_by_seat ⇒ Object
107 108 109 |
# File 'lib/seatsio/domain.rb', line 107 def self.all_by_seat TableBookingConfig.new('ALL_BY_SEAT') end |
.all_by_table ⇒ Object
111 112 113 |
# File 'lib/seatsio/domain.rb', line 111 def self.all_by_table TableBookingConfig.new('ALL_BY_TABLE') end |
.custom(tables) ⇒ Object
115 116 117 |
# File 'lib/seatsio/domain.rb', line 115 def self.custom(tables) TableBookingConfig.new('CUSTOM', tables) end |
.from_json(data) ⇒ Object
119 120 121 122 123 |
# File 'lib/seatsio/domain.rb', line 119 def self.from_json(data) if data TableBookingConfig.new(data['mode'], data['tables']) end end |
.inherit ⇒ Object
103 104 105 |
# File 'lib/seatsio/domain.rb', line 103 def self.inherit TableBookingConfig.new('INHERIT') end |