Skip to content

Commit d7947b8

Browse files
committed
[enh] included_gigabytes_bandwidth has also been migrated to a float64
1 parent 19b5aca commit d7947b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

github/billing.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ type MinutesUsedBreakdown = map[string]int
2929

3030
// PackageBilling represents a GitHub Package billing.
3131
type PackageBilling struct {
32-
TotalGigabytesBandwidthUsed int `json:"total_gigabytes_bandwidth_used"`
33-
TotalPaidGigabytesBandwidthUsed int `json:"total_paid_gigabytes_bandwidth_used"`
34-
IncludedGigabytesBandwidth int `json:"included_gigabytes_bandwidth"`
32+
TotalGigabytesBandwidthUsed int `json:"total_gigabytes_bandwidth_used"`
33+
TotalPaidGigabytesBandwidthUsed int `json:"total_paid_gigabytes_bandwidth_used"`
34+
IncludedGigabytesBandwidth float64 `json:"included_gigabytes_bandwidth"`
3535
}
3636

3737
// StorageBilling represents a GitHub Storage billing.

0 commit comments

Comments
 (0)