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.
77 78 79 80 |
# File 'lib/seatsio/domain.rb', line 77 def initialize(mode, tables = nil) @mode = mode @tables = tables end |
Instance Attribute Details
#mode ⇒ Object (readonly)
Returns the value of attribute mode.
75 76 77 |
# File 'lib/seatsio/domain.rb', line 75 def mode @mode end |
#tables ⇒ Object (readonly)
Returns the value of attribute tables.
75 76 77 |
# File 'lib/seatsio/domain.rb', line 75 def tables @tables end |
Class Method Details
.all_by_seat ⇒ Object
86 87 88 |
# File 'lib/seatsio/domain.rb', line 86 def self.all_by_seat TableBookingConfig.new('ALL_BY_SEAT') end |
.all_by_table ⇒ Object
90 91 92 |
# File 'lib/seatsio/domain.rb', line 90 def self.all_by_table TableBookingConfig.new('ALL_BY_TABLE') end |
.custom(tables) ⇒ Object
94 95 96 |
# File 'lib/seatsio/domain.rb', line 94 def self.custom(tables) TableBookingConfig.new('CUSTOM', tables) end |
.from_json(data) ⇒ Object
98 99 100 101 102 |
# File 'lib/seatsio/domain.rb', line 98 def self.from_json(data) if data TableBookingConfig.new(data['mode'], data['tables']) end end |
.inherit ⇒ Object
82 83 84 |
# File 'lib/seatsio/domain.rb', line 82 def self.inherit TableBookingConfig.new('INHERIT') end |