Struct stripe::ChargeListParams[][src]

pub struct ChargeListParams<'a> {
    pub created: Option<RangeQuery<Timestamp>>,
    pub customer: Option<&'a str>,
    pub ending_before: Option<&'a str>,
    pub limit: Option<i64>,
    pub source: Option<SourceFilter>,
    pub starting_after: Option<&'a str>,
    pub transfer_group: Option<&'a str>,
}

The set of parameters that can be used when listing charges.

For more details see https://stripe.com/docs/api#list_charges

Fields

Trait Implementations

impl<'a> Debug for ChargeListParams<'a>
[src]

Formats the value using the given formatter. Read more

impl<'a> Default for ChargeListParams<'a>
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl<'a> Send for ChargeListParams<'a>

impl<'a> Sync for ChargeListParams<'a>