github.com/grokify/go-ringcentral-client@v0.3.31/engagedigital/v1/client/model_thread.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 Thread struct { 17 CategoryIds []string `json:"category_ids,omitempty"` 18 Closed bool `json:"closed,omitempty"` 19 ContentsCount int32 `json:"contents_count,omitempty"` 20 CreatedAt time.Time `json:"created_at,omitempty"` 21 ExtraData map[string]interface{} `json:"extra_data,omitempty"` 22 ForeignId string `json:"foreign_id,omitempty"` 23 Id string `json:"id"` 24 InterventionsCount int32 `json:"interventions_count,omitempty"` 25 SourceId string `json:"source_id,omitempty"` 26 ThreadCategoryIds []string `json:"thread_category_ids,omitempty"` 27 Title string `json:"title,omitempty"` 28 UpdatedAt time.Time `json:"updated_at,omitempty"` 29 }