-
Hello
This what is being returned:
|
Beta Was this translation helpful? Give feedback.
Answered by
imdhemy
Nov 2, 2022
Replies: 1 comment
-
Hello You don't have to decrypt them, just use the getter methods: $transactionInfo = $data->getTransactionInfo();
// To get data as an array
$claims = $transactionInfo->getClaims();
// still you can access data by name using a getter method
$envitonment = $transactionInfo->getEnvironment();
$expiresDate = $transactionInfo->getExpiresDate();
// and so on ... |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
imdhemy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello
You don't have to decrypt them, just use the getter methods: