Skip to content

Commit

Permalink
add new data points to login model
Browse files Browse the repository at this point in the history
  • Loading branch information
rich-spitkovsky-riskified committed Mar 31, 2021
1 parent 5efb063 commit f7b1a5d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Riskified.SDK/Model/AccountActionElements/Login.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,11 @@ public Login(string customerId, string email, LoginStatus loginStatus, ClientDet
[JsonProperty(PropertyName = "social_login_type")]
[JsonConverter(typeof(StringEnumConverter))]
public SocialType? SocialLoginType { get; set; }

[JsonProperty(PropertyName = "challenge_redirect_url")]
public string ChallengeRedirectUrl { get; set; }

[JsonProperty(PropertyName = "account_recovery_url")]
public string AccountRecoveryUrl { get; set; }
}
}

0 comments on commit f7b1a5d

Please sign in to comment.