github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+incompatible/plugin/v7/models/org.go (about)

     1  // +build V7
     2  
     3  package models
     4  
     5  // Org represents a Cloud Controller V3 Org.
     6  type Org struct {
     7  	Name string
     8  	GUID string
     9  }
    10  
    11  type Domain struct {
    12  	Name string
    13  	GUID string
    14  }
    15  
    16  type OrgSummary struct {
    17  	Org
    18  
    19  	Metadata Metadata
    20  
    21  	Spaces []Space
    22  
    23  	Domains []Domain
    24  }