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.
169 170 171 172 |
# File 'lib/seatsio/domain.rb', line 169 def initialize(mode, tables = nil) @mode = mode @tables = tables end |
Instance Attribute Details
#mode ⇒ Object (readonly)
Returns the value of attribute mode.
167 168 169 |
# File 'lib/seatsio/domain.rb', line 167 def mode @mode end |
#tables ⇒ Object (readonly)
Returns the value of attribute tables.
167 168 169 |
# File 'lib/seatsio/domain.rb', line 167 def tables @tables end |
Class Method Details
.all_by_seat ⇒ Object
178 179 180 |
# File 'lib/seatsio/domain.rb', line 178 def self.all_by_seat TableBookingConfig.new('ALL_BY_SEAT') end |
.all_by_table ⇒ Object
182 183 184 |
# File 'lib/seatsio/domain.rb', line 182 def self.all_by_table TableBookingConfig.new('ALL_BY_TABLE') end |
.custom(tables) ⇒ Object
186 187 188 |
# File 'lib/seatsio/domain.rb', line 186 def self.custom(tables) TableBookingConfig.new('CUSTOM', tables) end |
.from_json(data) ⇒ Object
190 191 192 193 194 |
# File 'lib/seatsio/domain.rb', line 190 def self.from_json(data) if data TableBookingConfig.new(data['mode'], data['tables']) end end |
.inherit ⇒ Object
174 175 176 |
# File 'lib/seatsio/domain.rb', line 174 def self.inherit TableBookingConfig.new('INHERIT') end |