'eBay API GAS how to get [ attribute currencyID ]

What I want to solve

OrderArray.Order
.TransactionArray.Transaction
   .TransactionPrice
   [attribute currencyID]

I want to get attribute currencyID.

What I tried myself

OrderArray.Order.TransactionArray.Transaction.TransactionPrice

Price has been acquired.I would like to know how to get a currency ID for this.

enter code here

const currency = create.TransactionPricecurrencyID.Text;
const tP = create.TransactionPrice.Text;

values.push ([tP]);

<OutputSelector>OrderArray.Order.TransactionArray.Transaction.TransactionPrice</OutputSelector>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source