Anchor to StoreCreditAccountTransactionStore
StoreCreditAccountTransaction
interface
Requires access scope.
Interface for a store credit account transaction.
Anchor to FieldsFields
- Anchor to accountaccount•Store
Credit non-nullAccount! The store credit account that the transaction belongs to.
- Anchor to amountamount•Money
V2! non-null The amount of the transaction.
- Anchor to balanceAfterTransactionbalance•
After Transaction MoneyV2! non-null The balance of the account after the transaction.
- Anchor to createdAtcreated•
At DateTime! non-null The date and time when the transaction was created.
Was this section helpful?
1{2 "account": "",3 "amount": "",4 "balanceAfterTransaction": "",5 "createdAt": ""6}
{
"account": "",
"amount": "",
"balanceAfterTransaction": "",
"createdAt": ""
}
interface StoreCreditAccountTransaction {
account: StoreCreditAccount!
amount: MoneyV2!
balanceAfterTransaction: MoneyV2!
createdAt: DateTime!
}