github.com/newrelic/newrelic-client-go@v1.1.0/pkg/accounts/types.go (about)

     1  // Code generated by tutone: DO NOT EDIT
     2  package accounts
     3  
     4  // RegionScope -
     5  type RegionScope string
     6  
     7  var RegionScopeTypes = struct {
     8  	// Do not filter by region
     9  	GLOBAL RegionScope
    10  	// Filter by region
    11  	IN_REGION RegionScope
    12  }{
    13  	// Do not filter by region
    14  	GLOBAL: "GLOBAL",
    15  	// Filter by region
    16  	IN_REGION: "IN_REGION",
    17  }
    18  
    19  // AccountOutline - The `AccountOutline` object provides basic data about an account.
    20  type AccountOutline struct {
    21  	//
    22  	ID int `json:"id,omitempty"`
    23  	//
    24  	Name string `json:"name,omitempty"`
    25  	// Returns event types that are currently reporting in the account.
    26  	ReportingEventTypes []string `json:"reportingEventTypes,omitempty"`
    27  }
    28  
    29  // AccountReference - The `AccountReference` object provides basic identifying information about the account.
    30  type AccountReference struct {
    31  	//
    32  	ID int `json:"id,omitempty"`
    33  	//
    34  	Name string `json:"name,omitempty"`
    35  }