collab: Fetch more meters and prices when initializing StripeBilling
(#19288)
This PR makes it so we fetch more meters and prices when initializing `StripeBilling`, as we have more than 10 meters defined. Release Notes: - N/A
This commit is contained in:
parent
834d50f0db
commit
9c3d80d6e8
1 changed files with 12 additions and 3 deletions
|
@ -45,7 +45,13 @@ impl StripeBilling {
|
||||||
|
|
||||||
let (meters, prices) = futures::try_join!(
|
let (meters, prices) = futures::try_join!(
|
||||||
StripeMeter::list(&self.client),
|
StripeMeter::list(&self.client),
|
||||||
stripe::Price::list(&self.client, &stripe::ListPrices::default())
|
stripe::Price::list(
|
||||||
|
&self.client,
|
||||||
|
&stripe::ListPrices {
|
||||||
|
limit: Some(100),
|
||||||
|
..Default::default()
|
||||||
|
}
|
||||||
|
)
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
for meter in meters.data {
|
for meter in meters.data {
|
||||||
|
@ -396,9 +402,12 @@ impl StripeMeter {
|
||||||
|
|
||||||
pub fn list(client: &stripe::Client) -> stripe::Response<stripe::List<Self>> {
|
pub fn list(client: &stripe::Client) -> stripe::Response<stripe::List<Self>> {
|
||||||
#[derive(Serialize)]
|
#[derive(Serialize)]
|
||||||
struct Params {}
|
struct Params {
|
||||||
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
limit: Option<u64>,
|
||||||
|
}
|
||||||
|
|
||||||
client.get_query("/billing/meters", Params {})
|
client.get_query("/billing/meters", Params { limit: Some(100) })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue