github.com/launchdarkly/api-client-go@v5.3.0+incompatible/model_subscription_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 SubscriptionBody struct {
    14  	// A human-readable name for your subscription configuration.
    15  	Name string `json:"name"`
    16  	Statements []Statement `json:"statements,omitempty"`
    17  	// Integration-specific configuration fields.
    18  	Config *interface{} `json:"config"`
    19  	// Whether the integration subscription is active or not.
    20  	On bool `json:"on,omitempty"`
    21  	// Tags for the integration subscription.
    22  	Tags []string `json:"tags,omitempty"`
    23  }