github.com/grokify/go-ringcentral-client@v0.3.31/engagedigital/v1/client/model_content_attachment.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 ContentAttachment struct { 17 ContentType string `json:"content_type,omitempty"` 18 CreatedAt time.Time `json:"created_at,omitempty"` 19 Embed string `json:"embed,omitempty"` 20 Filename string `json:"filename,omitempty"` 21 ForeignId string `json:"foreign_id,omitempty"` 22 Id string `json:"id,omitempty"` 23 Public string `json:"public?,omitempty"` 24 Size int32 `json:"size,omitempty"` 25 UpdatedAt time.Time `json:"updated_at,omitempty"` 26 // You can download the attachments by using an API access token with the following URL: https://[your-domain].engagement.dimelo.com/attachments/[attachment_id]?access_token=[your_ access_token] 27 Url string `json:"url,omitempty"` 28 }