class Seatsio::SubaccountsClient

def update(id:, name: nil, email: nil)

def update(id:, name: nil, email: nil)
  body = {}
  body['name'] = name if name
  body['email'] = email if email
  @http_client.post("subaccounts/#{id}", body)
end