class Seatsio::SubaccountsClient

def create(name: nil, email: nil)

def create(name: nil, email: nil)
  body = {}
  body['name'] = name if name
  body['email'] = email if email
  response = @http_client.post("subaccounts", body)
  Domain::Subaccount.new(response)
end