Skip to content

Commit ac95873

Browse files
committed
made SendAt in mail class nullable
1 parent 783b6e3 commit ac95873

File tree

1 file changed

+2
-2
lines changed
  • SendGrid/SendGrid/Helpers/Mail

1 file changed

+2
-2
lines changed

SendGrid/SendGrid/Helpers/Mail/Mail.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class Mail
1919
private Dictionary<String, String> sections;
2020
private List<String> categories;
2121
private Dictionary<String, String> customArgs;
22-
private long sendAt;
22+
private long? sendAt;
2323
private ASM asm;
2424
private String batchId;
2525
private String setIpPoolId;
@@ -183,7 +183,7 @@ public Dictionary<string, string> CustomArgs
183183
}
184184

185185
[JsonProperty(PropertyName = "send_at")]
186-
public long SendAt
186+
public long? SendAt
187187
{
188188
get
189189
{

0 commit comments

Comments
 (0)