github.com/launchdarkly/api-client-go@v5.3.0+incompatible/model_approval_request_config_body.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 ApprovalRequestConfigBody struct {
    14  	// A name that describes the changes you would like to apply to a feature flag configuration
    15  	Description string `json:"description"`
    16  	Instructions *SemanticPatchInstruction `json:"instructions"`
    17  	NotifyMemberIds []string `json:"notifyMemberIds"`
    18  	// comment will be included in audit log item for change.
    19  	Comment string `json:"comment,omitempty"`
    20  	// Timestamp for when instructions will be executed
    21  	ExecutionDate int64 `json:"executionDate,omitempty"`
    22  	// ID of scheduled change to edit or delete
    23  	OperatingOnId string `json:"operatingOnId,omitempty"`
    24  }