Skip to content

Commit

Permalink
make date of birth nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
itaywaxman authored May 23, 2017
1 parent 21e7084 commit 1217d1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Riskified.SDK/Model/OrderElements/Passenger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void Validate(Validations validationType = Validations.Weak)
public string Lastname { get; set; }

[JsonProperty(PropertyName = "date_of_birth")]
public DateTime DateOfBirth { get; set; }
public DateTime? DateOfBirth { get; set; }

[JsonProperty(PropertyName = "nationality_code")]
public string nationalityCode { get; set; }
Expand Down

0 comments on commit 1217d1d

Please sign in to comment.