github.com/grokify/go-ringcentral-client@v0.3.31/engagedigital/v1/client/model_intervention_comment.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 InterventionComment struct {
    17  	Body           string    `json:"body,omitempty"`
    18  	CreatedAt      time.Time `json:"created_at,omitempty"`
    19  	Id             string    `json:"id,omitempty"`
    20  	InterventionId string    `json:"intervention_id,omitempty"`
    21  	ThreadId       string    `json:"thread_id,omitempty"`
    22  	UpdatedAt      time.Time `json:"updated_at,omitempty"`
    23  	UserId         string    `json:"user_id,omitempty"`
    24  	VidentityId    string    `json:"videntity_id,omitempty"`
    25  }