class Seatsio::EventsClient

def create(chart_key: nil, event_key: nil, table_booking_config: nil, social_distancing_ruleset_key: nil)

def create(chart_key: nil, event_key: nil, table_booking_config: nil, social_distancing_ruleset_key: nil)
  payload = build_event_request(chart_key: chart_key, event_key: event_key,
                                table_booking_config: table_booking_config, social_distancing_ruleset_key: social_distancing_ruleset_key)
  response = @http_client.post("events", payload)
  Event.new(response)
end