pub struct Topup {
Show 15 fields pub id: TopupId, pub amount: i64, pub balance_transaction: Option<Expandable<BalanceTransaction>>, pub created: Timestamp, pub currency: Currency, pub description: Option<String>, pub expected_availability_date: Option<Timestamp>, pub failure_code: Option<String>, pub failure_message: Option<String>, pub livemode: bool, pub metadata: Metadata, pub source: Source, pub statement_descriptor: Option<String>, pub status: TopupStatus, pub transfer_group: Option<String>,
}
Expand description

The resource representing a Stripe “Topup”.

For more details see https://stripe.com/docs/api/topups/object

Fields

id: TopupId

Unique identifier for the object.

amount: i64

Amount transferred.

balance_transaction: Option<Expandable<BalanceTransaction>>

ID of the balance transaction that describes the impact of this top-up on your account balance.

May not be specified depending on status of top-up.

created: Timestamp

Time at which the object was created.

Measured in seconds since the Unix epoch.

currency: Currency

Three-letter ISO currency code, in lowercase.

Must be a supported currency.

description: Option<String>

An arbitrary string attached to the object.

Often useful for displaying to users.

expected_availability_date: Option<Timestamp>

Date the funds are expected to arrive in your Stripe account for payouts.

This factors in delays like weekends or bank holidays. May not be specified depending on status of top-up.

failure_code: Option<String>

Error code explaining reason for top-up failure if available (see the errors section for a list of codes).

failure_message: Option<String>

Message to user further explaining reason for top-up failure if available.

livemode: bool

Has the value true if the object exists in live mode or the value false if the object exists in test mode.

metadata: Metadata

Set of key-value pairs that you can attach to an object.

This can be useful for storing additional information about the object in a structured format.

source: Sourcestatement_descriptor: Option<String>

Extra information about a top-up.

This will appear on your source’s bank statement. It must contain at least one letter.

status: TopupStatus

The status of the top-up is either canceled, failed, pending, reversed, or succeeded.

transfer_group: Option<String>

A string that identifies this top-up as part of a group.

Implementations

Returns a list of top-ups.

Retrieves the details of a top-up that has previously been created.

Supply the unique top-up ID that was returned from your previous request, and Stripe will return the corresponding top-up information.

Updates the metadata of a top-up.

Other top-up details are not editable by design.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

The canonical id type for this object.

The id of the object.

The object’s type, typically represented in wire format as the object property.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more