Skip to content

Commit

Permalink
log false fix
Browse files Browse the repository at this point in the history
  • Loading branch information
narayana-plivo committed Sep 28, 2018
1 parent 1d7bcd6 commit a5610ec
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions messages.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ type MessageCreateParams struct {
Dst string `json:"dst,omitempty" url:"dst,omitempty"`
Text string `json:"text,omitempty" url:"text,omitempty"`
// Optional parameters.
Type string `json:"type,omitempty" url:"type,omitempty"`
URL string `json:"url,omitempty" url:"url,omitempty"`
Method string `json:"method,omitempty" url:"method,omitempty"`
Trackable bool `json:"trackable,omitempty" url:"trackable,omitempty"`
Log bool `json:"log,omitempty" url:"log,omitempty"`
Type string `json:"type,omitempty" url:"type,omitempty"`
URL string `json:"url,omitempty" url:"url,omitempty"`
Method string `json:"method,omitempty" url:"method,omitempty"`
Trackable bool `json:"trackable,omitempty" url:"trackable,omitempty"`
Log interface{} `json:"log,omitempty" url:"log,omitempty"`
// Either one of src and powerpackuuid should be given
PowerpackUUID string `json:"powerpack_uuid,omitempty" url:"powerpack_uuid,omitempty"`
}
Expand Down

0 comments on commit a5610ec

Please sign in to comment.