github.com/launchdarkly/api-client-go@v5.3.0+incompatible/model_audit_log_entry.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 AuditLogEntry struct {
    14  	Links *Links `json:"_links,omitempty"`
    15  	// The unique resource id.
    16  	Id string `json:"_id,omitempty"`
    17  	Date int64 `json:"date,omitempty"`
    18  	Kind string `json:"kind,omitempty"`
    19  	Name string `json:"name,omitempty"`
    20  	Description string `json:"description,omitempty"`
    21  	ShortDescription string `json:"shortDescription,omitempty"`
    22  	Comment string `json:"comment,omitempty"`
    23  	Member *Member `json:"member,omitempty"`
    24  	TitleVerb string `json:"titleVerb,omitempty"`
    25  	Title string `json:"title,omitempty"`
    26  	Target *AuditLogEntryTarget `json:"target,omitempty"`
    27  }