Skip to main content

Account

Represents an account on a user's health wallet.

type Account {
active: Boolean!
availableBalance: Money!
currentBalance: Money!
endDateTime: DateTime
name: String!
type: AccountType!
}

Fields

Account.active ● Boolean! non-null scalar

Whether or not the account is considered active.

Account.availableBalance ● Money! non-null object

The user's available balance, which factors in pending withdrawals.

Account.currentBalance ● Money! non-null object

The user's current balance, which factors in pending deposits.

Account.endDateTime ● DateTime scalar

The datetime at which this benefit account will end. If null, the account has no end date.

Account.name ● String! non-null scalar

The name of the account.

Account.type ● AccountType! non-null enum

The account's type.

Member of

Wallet object