@@ -18,9 +18,9 @@ type BillingService service
18
18
19
19
// ActionBilling represents a GitHub Action billing.
20
20
type ActionBilling struct {
21
- TotalMinutesUsed int `json:"total_minutes_used"`
21
+ TotalMinutesUsed float64 `json:"total_minutes_used"`
22
22
TotalPaidMinutesUsed float64 `json:"total_paid_minutes_used"`
23
- IncludedMinutes int `json:"included_minutes"`
23
+ IncludedMinutes float64 `json:"included_minutes"`
24
24
MinutesUsedBreakdown MinutesUsedBreakdown `json:"minutes_used_breakdown"`
25
25
}
26
26
@@ -29,16 +29,16 @@ type MinutesUsedBreakdown = map[string]int
29
29
30
30
// PackageBilling represents a GitHub Package billing.
31
31
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"`
35
35
}
36
36
37
37
// StorageBilling represents a GitHub Storage billing.
38
38
type StorageBilling struct {
39
39
DaysLeftInBillingCycle int `json:"days_left_in_billing_cycle"`
40
40
EstimatedPaidStorageForMonth float64 `json:"estimated_paid_storage_for_month"`
41
- EstimatedStorageForMonth int `json:"estimated_storage_for_month"`
41
+ EstimatedStorageForMonth float64 `json:"estimated_storage_for_month"`
42
42
}
43
43
44
44
// ActiveCommitters represents the total active committers across all repositories in an Organization.
0 commit comments