github.com/launchdarkly/api-client-go@v5.3.0+incompatible/model_feature_flag_change_request_review.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 FeatureFlagChangeRequestReview struct {
    14  	// A unix epoch time in milliseconds specifying the date the change request was reviewed
    15  	CreationDate int32 `json:"creationDate,omitempty"`
    16  	Kind *FeatureFlagChangeRequestReviewStatus `json:"kind,omitempty"`
    17  	// The unique resource id.
    18  	MemberId string `json:"memberId,omitempty"`
    19  	// The unique resource id.
    20  	Id string `json:"_id,omitempty"`
    21  }