Skip to content

Commit 9c94ae7

Browse files
Add missed IsReference
1 parent 6a70635 commit 9c94ae7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,3 +321,6 @@ $RECYCLE.BIN/
321321

322322
# Windows shortcuts
323323
*.lnk
324+
325+
# Code
326+
/.vscode

src/SendGrid/Helpers/Mail/Model/ASM.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class ASM
2424
/// Gets or sets an array containing the unsubscribe groups that you would like to be displayed on the unsubscribe preferences page.
2525
/// https://sendgrid.com/docs/User_Guide/Suppressions/recipient_subscription_preferences.html
2626
/// </summary>
27-
[JsonProperty(PropertyName = "groups_to_display")]
27+
[JsonProperty(PropertyName = "groups_to_display", IsReference = false)]
2828
public List<int> GroupsToDisplay { get; set; }
2929
}
3030
}

0 commit comments

Comments
 (0)