github.com/dcarley/cf-cli@v6.24.1-0.20170220111324-4225ff346898+incompatible/api/cloudcontroller/ccv3/api_links.go (about)

     1  package ccv3
     2  
     3  // APILink represents a generic link from a response object.
     4  type APILink struct {
     5  	// HREF is the fully qualified URL for the link.
     6  	HREF string `json:"href"`
     7  
     8  	// Meta contains additional metadata about the API.
     9  	Meta struct {
    10  		// Version of the API
    11  		Version string `json:"version"`
    12  	} `json:"meta"`
    13  }