github.com/ActiveState/cli@v0.0.0-20240508170324-6801f60cd051/pkg/platform/api/graphql/model/usage.go (about)

     1  package model
     2  
     3  type RuntimeUsageResponse struct {
     4  	Usage []RuntimeUsage `json:"organizations_runtime_usage"`
     5  }
     6  
     7  type RuntimeUsage struct {
     8  	// ActiveDynamicRuntimes is the total number of dynamic runtimes in use
     9  	ActiveDynamicRuntimes float64 `json:"active_runtimes"`
    10  
    11  	// LimitDynamicRuntimes is the total number of dynamic runtimes that can be used
    12  	LimitDynamicRuntimes float64 `json:"limit_runtimes"`
    13  }