Skip to content

Commit

Permalink
fix: making transactions balance optional in (#178)
Browse files Browse the repository at this point in the history
pluggy client transactions api
  • Loading branch information
nicolasauler authored Dec 17, 2024
1 parent ccec64e commit c03a6bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/pluggy/transactions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ pub struct Transaction {
#[serde(rename = "type")]
tx_type: TransactionType,
/// Balance after the transaction
balance: f32,
balance: Option<f32>,
/// Institution provided code
provider_code: Option<String>,
status: TransactionStatus,
Expand Down

0 comments on commit c03a6bf

Please sign in to comment.