Wallet
Wallet contains all the redemptions related to a Contact
type Wallet {
uuid: String!
globalCreditBalance: Float!
localCreditBalance: Float!
shopifyCreditBalance: Float!
creditEntries(
limit: Int
offset: Int
): [CreditEntry]
redemptionCodes(
limit: Int
offset: Int
): [RedemptionCode]
}
Fields
Wallet.uuid ● String! non-null scalar
UUID of the Wallet
Wallet.globalCreditBalance ● Float! non-null scalar
Global credit balance of the Wallet
Wallet.localCreditBalance ● Float! non-null scalar
Local credit balance of the Wallet
Wallet.shopifyCreditBalance ● Float! non-null scalar
Shopify credit balance of the Wallet
Wallet.creditEntries ● [CreditEntry] list object
Credit entries associated with the Wallet
Wallet.creditEntries.limit ● Int scalar
Limit the number of credit entries returned
Wallet.creditEntries.offset ● Int scalar
Offset the list of credit entries returned
Wallet.redemptionCodes ● [RedemptionCode] list object
Redemption codes associated with the Wallet
Wallet.redemptionCodes.limit ● Int scalar
Limit the number of redemption codes returned
Wallet.redemptionCodes.offset ● Int scalar
Offset the list of redemption codes returned
Member Of
Contact object