fields.go 505 B

1234567891011121314
  1. package cloudcost
  2. // CloudCostField is an enum that represents CloudCost specific fields that can be filtered
  3. type CloudCostField string
  4. const (
  5. FieldInvoiceEntityID CloudCostField = "invoiceEntityID"
  6. FieldAccountID CloudCostField = "accountID"
  7. FieldProvider CloudCostField = "provider"
  8. FieldProviderID CloudCostField = "providerID"
  9. FieldCategory CloudCostField = "category"
  10. FieldService CloudCostField = "service"
  11. FieldLabel CloudCostField = "label"
  12. )