github.com/qlik-oss/gopherciser@v0.18.6/structs/privileges.go (about)

     1  package structs
     2  
     3  type Privileges struct {
     4  	Data []struct {
     5  		Attributes struct {
     6  			Definition struct {
     7  				App          []string `json:"app"`
     8  				Features     []string `json:"features"`
     9  				Installation string   `json:"installation"`
    10  				Override     struct {
    11  				} `json:"override"`
    12  				QvVersion string        `json:"qvVersion"`
    13  				Stream    []interface{} `json:"stream"`
    14  				Schemas   []interface{} `json:"schemas"`
    15  				Routes    []interface{} `json:"routes"`
    16  			} `json:"definition"`
    17  		} `json:"attributes"`
    18  		Type string `json:"type"`
    19  	} `json:"data"`
    20  	Links struct {
    21  		Self string `json:"self"`
    22  	} `json:"links"`
    23  }