JSONTotals holds the cost summary for JSON output.
| 56 | |
| 57 | // JSONTotals holds the cost summary for JSON output. |
| 58 | type JSONTotals struct { |
| 59 | HourlyRate string `json:"hourly_rate"` |
| 60 | MonthlyHourly string `json:"monthly_hourly"` |
| 61 | MonthlyUsage string `json:"monthly_usage,omitempty"` |
| 62 | MonthlyTotal string `json:"monthly_total"` |
| 63 | } |
| 64 | |
| 65 | // JSONOutput is the top-level JSON structure. |
| 66 | type JSONOutput struct { |
nothing calls this directly
no outgoing calls
no test coverage detected