Skip to content
View as Markdown

GetIssueFeatureFlagsResponse

Field Type Description
feature_flags repeated bitdrift.public.unary.client_report.v1.GetIssueFeatureFlagsResponse.FeatureFlag The feature flags active when the issue occurred.

Example

JSON
{
  "feature_flags": [
    {
      "modified_at": "2024-01-15T09:30:00Z",
      "name": "Resolved in v2.2.0",
      "variant": "user@example.com"
    }
  ]
}

GetIssueFeatureFlagsResponse.FeatureFlag

Field Type Description
name string The name of the feature flag.
variant optional string The variant of the feature flag, if applicable.
modified_at google.protobuf.Timestamp The last time the feature flag was modified prior to the issue occurring.

Example

JSON
{
  "modified_at": "2024-01-15T09:30:00Z",
  "name": "Resolved in v2.2.0",
  "variant": "user@example.com"
}