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

     1  /*
     2   * LaunchDarkly REST API
     3   *
     4   * Build custom integrations with the LaunchDarkly REST API
     5   *
     6   * API version: 3.10.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  // FeatureFlagChangeRequestReviewStatus : | Name     | Description | | --------:| ----------- | | pending  | the feature flag change request has not been reviewed yet | | approved | the feature flag change request has been approved and can now be applied | | declined | the feature flag change request has been declined and cannot be applied | 
    13  type FeatureFlagChangeRequestReviewStatus string
    14  
    15  // List of FeatureFlagChangeRequestReviewStatus
    16  const (
    17  	PENDING_FeatureFlagChangeRequestReviewStatus FeatureFlagChangeRequestReviewStatus = "pending"
    18  	APPROVED_FeatureFlagChangeRequestReviewStatus FeatureFlagChangeRequestReviewStatus = "approved"
    19  	DECLINED_FeatureFlagChangeRequestReviewStatus FeatureFlagChangeRequestReviewStatus = "declined"
    20  )