1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
package quotas
import (
"encoding/json"
"fmt"
"time"
"github.com/gophercloud/gophercloud"
)
type commonResult struct {
gophercloud.Result
}
// CreateResult is the response of a Create operations.
type CreateResult struct {
commonResult
}
// Extract is a function that accepts a result and extracts a quota resource.
func (r commonResult) Extract() (*Quotas, error) {
var s *Quotas
err := r.ExtractInto(&s)
return s, err
}
type Quotas struct {
Resource string `json:"resource"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
HardLimit int `json:"hard_limit"`
ProjectID string `json:"project_id"`
ID string `json:"-"`
}
func (r *Quotas) UnmarshalJSON(b []byte) error {
type tmp Quotas
var s struct {
tmp
ID interface{} `json:"id"`
}
err := json.Unmarshal(b, &s)
if err != nil {
return err
}
*r = Quotas(s.tmp)
switch t := s.ID.(type) {
case float64:
r.ID = fmt.Sprint(t)
case string:
r.ID = t
}
return nil
}
|