github.com/launchdarkly/api-client-go@v5.3.0+incompatible/model_user.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 User struct {
    14  	Key string `json:"key,omitempty"`
    15  	Secondary string `json:"secondary,omitempty"`
    16  	Ip string `json:"ip,omitempty"`
    17  	Country string `json:"country,omitempty"`
    18  	Email string `json:"email,omitempty"`
    19  	FirstName string `json:"firstName,omitempty"`
    20  	LastName string `json:"lastName,omitempty"`
    21  	Avatar string `json:"avatar,omitempty"`
    22  	Name string `json:"name,omitempty"`
    23  	Anonymous bool `json:"anonymous,omitempty"`
    24  	Custom *interface{} `json:"custom,omitempty"`
    25  }