To detail a charge, you can use:
$response = $apiGN->detailCharge()
->chargeId($chargeId)
->run()
->response();
To detail a subscription, you can do this:
$response = $apiGN->detailSubscription()
->subscriptionId($subscriptionId)
->run()
->response();