commitment.go 147 B

12345678
  1. package pricing
  2. type CommitmentType string
  3. const (
  4. CommitmentNone CommitmentType = "none"
  5. CommitmentReserved CommitmentType = "reserved"
  6. )