@@ -18,9 +18,9 @@ type BillingService service
1818
1919// ActionBilling represents a GitHub Action billing.
2020type ActionBilling struct {
21- TotalMinutesUsed int `json:"total_minutes_used"`
21+ TotalMinutesUsed float64 `json:"total_minutes_used"`
2222 TotalPaidMinutesUsed float64 `json:"total_paid_minutes_used"`
23- IncludedMinutes int `json:"included_minutes"`
23+ IncludedMinutes float64 `json:"included_minutes"`
2424 MinutesUsedBreakdown MinutesUsedBreakdown `json:"minutes_used_breakdown"`
2525}
2626
@@ -29,16 +29,16 @@ type MinutesUsedBreakdown = map[string]int
2929
3030// PackageBilling represents a GitHub Package billing.
3131type 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.
3838type StorageBilling struct {
3939 DaysLeftInBillingCycle int `json:"days_left_in_billing_cycle"`
4040 EstimatedPaidStorageForMonth float64 `json:"estimated_paid_storage_for_month"`
41- EstimatedStorageForMonth int `json:"estimated_storage_for_month"`
41+ EstimatedStorageForMonth float64 `json:"estimated_storage_for_month"`
4242}
4343
4444// ActiveCommitters represents the total active committers across all repositories in an Organization.
0 commit comments