class Seatsio::SubaccountsClient

def update(id:, name: nil)

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