diff options
author | Pontus Öwre <pontus@owre.se> | 2016-07-20 07:42:05 +0200 |
---|---|---|
committer | Pontus Öwre <pontus@owre.se> | 2016-07-20 07:42:05 +0200 |
commit | 783b6e323804dccac22977906ed0360bdabb682e (patch) | |
tree | def57900d0ee79c1084b149c755eaf2664c95e59 | |
parent | 59f4563efe2aced9b766c13007950631476f4daa (diff) | |
download | sendgrid-csharp-783b6e323804dccac22977906ed0360bdabb682e.zip sendgrid-csharp-783b6e323804dccac22977906ed0360bdabb682e.tar.gz sendgrid-csharp-783b6e323804dccac22977906ed0360bdabb682e.tar.bz2 |
Make SendAt nullable
-rw-r--r-- | SendGrid/SendGrid/Helpers/Mail/Mail.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SendGrid/SendGrid/Helpers/Mail/Mail.cs b/SendGrid/SendGrid/Helpers/Mail/Mail.cs index 81f381a..7e1210d 100644 --- a/SendGrid/SendGrid/Helpers/Mail/Mail.cs +++ b/SendGrid/SendGrid/Helpers/Mail/Mail.cs @@ -1118,7 +1118,7 @@ namespace SendGrid.Helpers.Mail private Dictionary<String, String> headers; private Dictionary<String, String> substitutions; private Dictionary<String, String> customArgs; - private long sendAt; + private long? sendAt; [JsonProperty(PropertyName = "to")] public List<Email> Tos @@ -1219,7 +1219,7 @@ namespace SendGrid.Helpers.Mail } [JsonProperty(PropertyName = "send_at")] - public long SendAt + public long? SendAt { get { |