github.com/launchdarkly/api-client-go@v5.3.0+incompatible/model_feature_flag_status_for_queried_environment.go (about)

     1  /*
     2   * LaunchDarkly REST API
     3   *
     4   * Build custom integrations with the LaunchDarkly REST API
     5   *
     6   * API version: 5.3.0
     7   * Contact: support@launchdarkly.com
     8   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     9   */
    10  
    11  package ldapi
    12  
    13  type FeatureFlagStatusForQueriedEnvironment struct {
    14  	// | Name     | Description | | --------:| ----------- | | new      | the feature flag was created within the last 7 days, and has not been requested yet | | active   | the feature flag was requested by your servers or clients within the last 7 days | | inactive | the feature flag was created more than 7 days ago, and hasn't been requested by your servers or clients within the past 7 days | | launched | one variation of the feature flag has been rolled out to all your users for at least 7 days | 
    15  	Name string `json:"name,omitempty"`
    16  	LastRequested string `json:"lastRequested,omitempty"`
    17  	Default_ *interface{} `json:"default,omitempty"`
    18  }