github.com/launchdarkly/api-client-go@v5.3.0+incompatible/model_member.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 Member struct {
    14  	Links *Links `json:"_links,omitempty"`
    15  	// The unique resource id.
    16  	Id string `json:"_id,omitempty"`
    17  	Role *Role `json:"role,omitempty"`
    18  	Email string `json:"email,omitempty"`
    19  	FirstName string `json:"firstName,omitempty"`
    20  	LastName string `json:"lastName,omitempty"`
    21  	Verified bool `json:"_verified,omitempty"`
    22  	PendingInvite bool `json:"_pendingInvite,omitempty"`
    23  	IsBeta bool `json:"isBeta,omitempty"`
    24  	CustomRoles []string `json:"customRoles,omitempty"`
    25  	// A unix epoch time in milliseconds specifying the last time this member was active in LaunchDarkly.
    26  	LastSeen int64 `json:"_lastSeen,omitempty"`
    27  	LastSeenMetadata *MemberLastSeenMetadata `json:"_lastSeenMetadata,omitempty"`
    28  }