adlio / trello

Trello API wrapper for Go
MIT License
220 stars 71 forks source link

CheckItem missing greater than free features #96

Open doug4j opened 1 month ago

doug4j commented 1 month ago

For a a trello account that greater than free, there is the option to set/get the member, due date, and DueReminder for a Trello CheckList CheckItem. I have implemented this in a private repo. I found adding this very useful for my needs. I'd like to explore bringing this work into the adlio / trello project. It was pretty straight-forward.

type CheckItem struct {
       //... other fields
        IDMember    string     `json:"idMember,omitempty"` // >free feature only
    Due         time.Time  `json:"due,omitempty"` // >free feature only
    DueReminder int        `json:"dueReminder,omitempty"` //>free feature only
}