Como obter String de JSONObject sem nome específico

Por favor, verifique este exemplo de código.

HttpEntity getResponseEntity = getResponse.getEntity();

String message = EntityUtils.toString(getResponseEntity,"UTF-8");

//message = {"EntryPointJsonResult":"{\"NextTransactionUrl\":null,\"TraceId\":null,\"IsAuthorizationRequired\":false,\"IsError\":false,\"ErrorCode\":null,\"ErrorMessage\":null}"}

JSONObject object = new JSONObject(message);
String objectString = object.getString("EntryPointJsonResult"); 
//objectString = {\"NextTransactionUrl\":null,\"TraceId\":null,\"IsAuthorizationRequired\":false,\"IsError\":false,\"ErrorCode\":null,\"ErrorMessage\":null}               

Essa é a pergunta: quero obter o "objectString" sem "EntryPointJsonResult". Porque essa informação é diferente na outra resposta.

Então, como posso obter o "objectString" sem chave específica como "EntryPointJsonResult"

questionAnswers(2)

yourAnswerToTheQuestion