Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4c6565 committed May 18, 2020
1 parent b21a724 commit 9cd1c61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/service/draas/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ type BackupResource struct {
// Quota in DB
Quota int `json:"quota"`
// Used quota in DB
UsedQuota int `json:"used_quota"`
UsedQuota float32 `json:"used_quota"`
}

// IOPSTier represents an IOPS tier
type IOPSTier struct {
ID string `json:"id"`
IOPSLimit string `json:"iops_limit"`
IOPSLimit int `json:"iops_limit"`
}

// BackupService represents the backup service for a solution
Expand Down

0 comments on commit 9cd1c61

Please sign in to comment.