whitelist.go raw

   1  package account
   2  
   3  // IPWhitelist wraps the IP whitelist.
   4  type IPWhitelist struct {
   5  	ID     string   `json:"id,omitempty"`
   6  	Name   string   `json:"name"`
   7  	Values []string `json:"values"`
   8  }
   9