github.com/launchdarkly/api-client-go@v5.3.0+incompatible/model_destination.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 Destination struct {
    14  	Links *Links `json:"_links,omitempty"`
    15  	// Unique destination ID.
    16  	Id string `json:"_id,omitempty"`
    17  	// The destination name
    18  	Name string `json:"name,omitempty"`
    19  	// Destination type (\"google-pubsub\", \"kinesis\", \"mparticle\", or \"segment\")
    20  	Kind string `json:"kind,omitempty"`
    21  	// destination-specific configuration.
    22  	Config *interface{} `json:"config,omitempty"`
    23  	// Whether the data export destination is on or not.
    24  	On bool `json:"on,omitempty"`
    25  	Version int32 `json:"version,omitempty"`
    26  }