aboutsummaryrefslogtreecommitdiff
path: root/models.go
diff options
context:
space:
mode:
Diffstat (limited to 'models.go')
-rw-r--r--models.go10
1 files changed, 7 insertions, 3 deletions
diff --git a/models.go b/models.go
index f449958..5870cb9 100644
--- a/models.go
+++ b/models.go
@@ -228,9 +228,13 @@ type ContactAttachmentRequestPayload struct {
// Server returns this if there was an exception to your request
type Error struct {
- Error string `json:"error,omitempty"` // Error
- Code string `json:"code"` // Error code
- Message string `json:"message"` // Human-readable description
+ ErrorText string `json:"error,omitempty"` // Error
+ Code string `json:"code"` // Error code
+ Message string `json:"message"` // Human-readable description
+}
+
+func (e Error) Error() string {
+ return e.ErrorText
}
type FileAttachment struct {