Skip to content

StripeCustomerDetail

Details of the client's credit card

Fields

bank_type · String · The name of the bank the bank account is with (nil for 'Card' source types)
card_type · String · The brand of the card
card_type_label · String · The type of card indicated by the user. Defaults to personal, Options are 'hsa', 'fsa', and 'personal'
country · String · Stripe card country
cursor · Cursor! · required · Pagination cursor
expiration · String · The expiration date of the card
expiring_next_month · Boolean · Whether the card is expiring next month
id · ID! · required · The unique identifier of the customer detail object
last_four · String · The last 4 digits of the credit card
source_status · String · The status of the payment method
source_type · String · The type of payment method (either 'Card' or 'Bank Account')
stripe_id · String · The ID of the client (in Stripe)
user · User · The client associated with stripe account(in Healthie)
user_id · String · The ID of the client (in Healthie)
zip · String · Stripe card address zip

Used By

Definition

"""
Details of the client's credit card
"""
type StripeCustomerDetail {
"""
The name of the bank the bank account is with (nil for 'Card' source types)
"""
bank_type: String
"""
The brand of the card
"""
card_type: String
"""
The type of card indicated by the user. Defaults to personal, Options are 'hsa', 'fsa', and 'personal'
"""
card_type_label: String
"""
Stripe card country
"""
country: String
"""
Pagination cursor
"""
cursor: Cursor!
"""
The expiration date of the card
"""
expiration: String
"""
Whether the card is expiring next month
"""
expiring_next_month: Boolean
"""
The unique identifier of the customer detail object
"""
id: ID!
"""
The last 4 digits of the credit card
"""
last_four: String
"""
The status of the payment method
"""
source_status: String
"""
The type of payment method (either 'Card' or 'Bank Account')
"""
source_type: String
"""
The ID of the client (in Stripe)
"""
stripe_id: String
"""
The client associated with stripe account(in Healthie)
"""
user: User
"""
The ID of the client (in Healthie)
"""
user_id: String
"""
Stripe card address zip
"""
zip: String
}