Skip to content

Commit

Permalink
fix: total_cost must be float (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
slider23 authored Sep 17, 2024
1 parent 4ec4ac1 commit b6a197e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/DTO/CostResponseData.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ class CostResponseData extends DataTransferObject
/**
* Total cost of the request
*
* @var int
* @var float
*/
public int $total_cost;
public float $total_cost;

/**
* Origin of the request
Expand Down Expand Up @@ -179,4 +179,4 @@ class CostResponseData extends DataTransferObject
* @var int|null
*/
public ?int $usage;
}
}

0 comments on commit b6a197e

Please sign in to comment.