Skip to content

TransferType

A transfer

Fields

amount · String · The amount for the transfer
currency · String · The currency of the transfer
displayed_amount · String · The amount to display (formatted and with currency symbol)
displayed_expected_to_happen · String · The expected to happen date to display
displayed_initiated · String · The initiation date to display
expected_to_happen · String · The date that the transfer is expected to complete
fees · String · Total of all fees deducted from all transactions
id · String! · required · Stripe ID for this transfer
initiated · String · The initiation time of the transfer
status · String · The status for the transfer
transactions_count · Int · Number of transactions
type · String · The type of transfer

Used By

Definition

"""
A transfer
"""
type TransferType {
"""
The amount for the transfer
"""
amount: String
"""
The currency of the transfer
"""
currency: String
"""
The amount to display (formatted and with currency symbol)
"""
displayed_amount: String
"""
The expected to happen date to display
"""
displayed_expected_to_happen: String
"""
The initiation date to display
"""
displayed_initiated: String
"""
The date that the transfer is expected to complete
"""
expected_to_happen: String
"""
Total of all fees deducted from all transactions
"""
fees: String
"""
Stripe ID for this transfer
"""
id: String!
"""
The initiation time of the transfer
"""
initiated: String
"""
The status for the transfer
"""
status: String
"""
Number of transactions
"""
transactions_count: Int
"""
The type of transfer
"""
type: String
}