github.com/grokify/go-ringcentral-client@v0.3.31/engagedigital/v1/client/model_intervention.go (about)

     1  /*
     2   * Engage Digital API
     3   *
     4   * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
     5   *
     6   * API version: 1.0
     7   * Generated by: OpenAPI Generator (https://openapi-generator.tech)
     8   */
     9  
    10  package engagedigital
    11  
    12  import (
    13  	"time"
    14  )
    15  
    16  type Intervention struct {
    17  	CategoryIds             []string               `json:"category_ids,omitempty"`
    18  	Closed                  bool                   `json:"closed,omitempty"`
    19  	ClosedAt                time.Time              `json:"closed_at,omitempty"`
    20  	CommentsCount           int32                  `json:"comments_count,omitempty"`
    21  	ContentId               string                 `json:"content_id,omitempty"`
    22  	CreatedAt               time.Time              `json:"created_at,omitempty"`
    23  	CustomFields            map[string]interface{} `json:"custom_fields,omitempty"`
    24  	DeferredAt              time.Time              `json:"deferred_at,omitempty"`
    25  	FirstUserReplyId        string                 `json:"first_user_reply_id,omitempty"`
    26  	FirstUserReplyIn        int32                  `json:"first_user_reply_in,omitempty"`
    27  	FirstUserReplyInBh      int32                  `json:"first_user_reply_in_bh,omitempty"`
    28  	Id                      string                 `json:"id"`
    29  	IdentityId              string                 `json:"identity_id,omitempty"`
    30  	LastUserReplyIn         int32                  `json:"last_user_reply_in,omitempty"`
    31  	LastUserReplyInBh       int32                  `json:"last_user_reply_in_bh,omitempty"`
    32  	SourceId                string                 `json:"source_id,omitempty"`
    33  	Status                  string                 `json:"status,omitempty"`
    34  	ThreadId                string                 `json:"thread_id,omitempty"`
    35  	UpdatedAt               time.Time              `json:"updated_at,omitempty"`
    36  	UserId                  string                 `json:"user_id,omitempty"`
    37  	UserRepliesCount        int32                  `json:"user_replies_count,omitempty"`
    38  	UserReplyInAverage      int32                  `json:"user_reply_in_average,omitempty"`
    39  	UserReplyInAverageBh    int32                  `json:"user_reply_in_average_bh,omitempty"`
    40  	UserReplyInAverageCount int32                  `json:"user_reply_in_average_count,omitempty"`
    41  }