github.com/launchdarkly/api-client-go@v5.3.0+incompatible/model_user_targeting_expiration_for_segment.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 UserTargetingExpirationForSegment struct {
    14  	// Unix epoch time in milliseconds specifying the expiration date
    15  	ExpirationDate int64 `json:"expirationDate,omitempty"`
    16  	// either the included or excluded variation that the user is targeted on a segment
    17  	TargetType string `json:"targetType,omitempty"`
    18  	// Unique identifier for the user
    19  	UserKey string `json:"userKey,omitempty"`
    20  	Id string `json:"_id,omitempty"`
    21  	ResourceId *UserTargetingExpirationResourceIdForFlag `json:"_resourceId,omitempty"`
    22  	Links *Links `json:"_links,omitempty"`
    23  	Version int32 `json:"_version,omitempty"`
    24  }