Skip to content

Commit 783b6e3

Browse files
committed
Make SendAt nullable
1 parent 59f4563 commit 783b6e3

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
@@ -1118,7 +1118,7 @@ public class Personalization
11181118
private Dictionary<String, String> headers;
11191119
private Dictionary<String, String> substitutions;
11201120
private Dictionary<String, String> customArgs;
1121-
private long sendAt;
1121+
private long? sendAt;
11221122

11231123
[JsonProperty(PropertyName = "to")]
11241124
public List<Email> Tos
@@ -1219,7 +1219,7 @@ public Dictionary<string, string> CustomArgs
12191219
}
12201220

12211221
[JsonProperty(PropertyName = "send_at")]
1222-
public long SendAt
1222+
public long? SendAt
12231223
{
12241224
get
12251225
{

0 commit comments

Comments
 (0)