Skip to content

Commit

Permalink
Merge pull request #43 from customerio/eric/sdk_updates
Browse files Browse the repository at this point in the history
new optional fields added to request struct
  • Loading branch information
Eric Fialkowski authored Jan 4, 2023
2 parents 979794f + c171c77 commit 479ef1e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# Folders
_obj
_test
.idea

# Architecture specific extensions/prefixes
*.[568vq]
Expand Down
3 changes: 3 additions & 0 deletions send_email.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ type SendEmailRequest struct {
SendToUnsubscribed *bool `json:"send_to_unsubscribed,omitempty"`
EnableTracking *bool `json:"tracked,omitempty"`
QueueDraft *bool `json:"queue_draft,omitempty"`
DisableCSSPreprocessing *bool `json:"disable_css_preprocessing,omitempty"`
SendAt *int64 `json:"send_at,omitempty"`
Language *string `json:"language,omitempty"`
}

var ErrAttachmentExists = errors.New("attachment with this name already exists")
Expand Down

0 comments on commit 479ef1e

Please sign in to comment.