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

Commit

Permalink
Merge pull request #5 from lmsilvera/update_action_struct_2
Browse files Browse the repository at this point in the history
Update action struct for 'updateCard' Action type
  • Loading branch information
VojtechVitek committed Oct 5, 2015
2 parents 4dea343 + 25b0681 commit 8ad9675
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion action.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,15 @@ type Action struct {
IdMemberCreator string `json:"idMemberCreator"`
Data struct {
DateLastEdited string `json:"dateLastEdited"`
CheckItem struct {
ListBefore struct {
Id string `json:"id"`
Name string `json:"name"`
} `json:"listBefore"`
ListAfter struct {
Id string `json:"id"`
Name string `json:"name"`
} `json:"listAfter"`
CheckItem struct {
Id string `json:"id"`
State string `json:"state"`
Name string `json:"name"`
Expand Down

0 comments on commit 8ad9675

Please sign in to comment.