Skip to content
This repository has been archived by the owner on Apr 2, 2022. It is now read-only.

Commit

Permalink
Attachment mimetype is string (not []string)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryane committed Oct 22, 2016
1 parent 4444b7b commit a94d8f0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions attachment.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ package trello

type Attachment struct {
client *Client
Id string `json:"id"`
Bytes int `json:"bytes"`
Date string `json:"date"`
EdgeColor string `json:"edgeColor"`
IdMember string `json:"idMember"`
IsUpload bool `json:"isUpload"`
MimeType []string `json:"mimeType"`
Name string `json:"name"`
Id string `json:"id"`
Bytes int `json:"bytes"`
Date string `json:"date"`
EdgeColor string `json:"edgeColor"`
IdMember string `json:"idMember"`
IsUpload bool `json:"isUpload"`
MimeType string `json:"mimeType"`
Name string `json:"name"`
Previews []struct {
Width int `json:"width"`
Height int `json:"height"`
Expand Down

0 comments on commit a94d8f0

Please sign in to comment.