mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
33 lines
1.1 KiB
Go
33 lines
1.1 KiB
Go
// Copyright © 2016 Aaron Longwell
|
|
//
|
|
// Use of this source code is governed by an MIT licese.
|
|
// Details in the LICENSE file.
|
|
|
|
package trello
|
|
|
|
// Attachment represent the attachments of cards. This is a nested resource of Card.
|
|
// https://developers.trello.com/reference/#attachments
|
|
type Attachment struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
Pos float32 `json:"pos"`
|
|
Bytes int `json:"int"`
|
|
Date string `json:"date"`
|
|
EdgeColor string `json:"edgeColor"`
|
|
IDMember string `json:"idMember"`
|
|
IsUpload bool `json:"isUpload"`
|
|
MimeType string `json:"mimeType"`
|
|
Previews []AttachmentPreview `json:"previews"`
|
|
URL string `json:"url"`
|
|
}
|
|
|
|
// AttachmentPreview is a nested attribute of Attachment.
|
|
type AttachmentPreview struct {
|
|
ID string `json:"_id"`
|
|
URL string `json:"url"`
|
|
Width int `json:"width"`
|
|
Height int `json:"height"`
|
|
Bytes int `json:"bytes"`
|
|
Scaled bool `json:"scaled"`
|
|
}
|