github.com/launchdarkly/api-client-go@v5.3.0+incompatible/model_integration_subscription.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 IntegrationSubscription struct {
    14  	Links *HierarchicalLinks `json:"_links,omitempty"`
    15  	// The unique resource id.
    16  	Id string `json:"_id,omitempty"`
    17  	// The type of integration associated with this configuration.
    18  	Kind string `json:"kind,omitempty"`
    19  	// The user-defined name associated with this configuration.
    20  	Name string `json:"name,omitempty"`
    21  	// A key-value mapping of configuration fields.
    22  	Config *interface{} `json:"config,omitempty"`
    23  	Statements []Statement `json:"statements,omitempty"`
    24  	// Whether or not the integration is currently active.
    25  	On bool `json:"on,omitempty"`
    26  	// An array of tags for this integration configuration.
    27  	Tags []string `json:"tags,omitempty"`
    28  	Status *IntegrationSubscriptionStatus `json:"_status,omitempty"`
    29  }