github.com/launchdarkly/api-client-go@v5.3.0+incompatible/model_feature_flag_change_request.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  
    13  type FeatureFlagChangeRequest struct {
    14  	// The unique resource id.
    15  	Id string `json:"_id,omitempty"`
    16  	Version int32 `json:"_version,omitempty"`
    17  	// A unix epoch time in milliseconds specifying the date the change request was requested
    18  	CreationDate int32 `json:"creationDate,omitempty"`
    19  	// The id of the member that requested the change
    20  	RequestorId string `json:"requestorId,omitempty"`
    21  	ReviewStatus *FeatureFlagChangeRequestReviewStatus `json:"reviewStatus,omitempty"`
    22  	// | Name     | Description | | --------:| ----------- | | pending  | the feature flag change request has not been applied yet | | completed| the feature flag change request has been applied successfully | | failed   | the feature flag change request has been applied but the changes were not applied successfully | 
    23  	Status string `json:"status,omitempty"`
    24  	// The id of the member that applied the change request
    25  	AppliedByMemberID string `json:"appliedByMemberID,omitempty"`
    26  	// A unix epoch time in milliseconds specifying the date the change request was applied
    27  	AppliedDate int32 `json:"appliedDate,omitempty"`
    28  	CurrentReviewsByMemberId *FeatureFlagChangeRequestReview `json:"currentReviewsByMemberId,omitempty"`
    29  	AllReviews []FeatureFlagChangeRequestReview `json:"allReviews,omitempty"`
    30  	NotifyMemberIds []string `json:"notifyMemberIds,omitempty"`
    31  	Instructions *SemanticPatchInstruction `json:"instructions,omitempty"`
    32  }