summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPontus Öwre <pontus@owre.se>2016-07-20 07:42:05 +0200
committerMaxim Dubrovkin <maximdubrovkin@Maxims-MBP.Dlink>2016-09-20 20:10:28 +0500
commit4bc3074ce275de10440beed81d0029c227466fdb (patch)
treea22c8bea5a2264b3ccaec91f517fc47a09d782bc
parent28eb7a9de2557142a5c896488d1a0d671fc9a6ea (diff)
downloadsendgrid-csharp-4bc3074ce275de10440beed81d0029c227466fdb.zip
sendgrid-csharp-4bc3074ce275de10440beed81d0029c227466fdb.tar.gz
sendgrid-csharp-4bc3074ce275de10440beed81d0029c227466fdb.tar.bz2
Make SendAt nullable
-rw-r--r--SendGrid/SendGrid/Helpers/Mail/Mail.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/SendGrid/SendGrid/Helpers/Mail/Mail.cs b/SendGrid/SendGrid/Helpers/Mail/Mail.cs
index c24fed6..b475a14 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
{