Skip to content

Commit

Permalink
added some missing fields (itay)
Browse files Browse the repository at this point in the history
  • Loading branch information
Omri Mosseri committed Aug 13, 2015
1 parent df55f40 commit cb79ece
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
8 changes: 8 additions & 0 deletions Riskified.SDK/Model/OrderBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,5 +142,13 @@ public OrderBase(int merchantOrderId) : base(merchantOrderId)
[JsonProperty(PropertyName = "decision")]
public DecisionDetails Decision { get; set; }

[JsonProperty(PropertyName = "referring_site")]
public string ReferringSite { get; set; }

[JsonProperty(PropertyName = "note")]
public string Note { get; set; }

[JsonProperty(PropertyName = "decision_timeout")]
public int? DecisionTimeout { get; set; }
}
}
3 changes: 3 additions & 0 deletions Riskified.SDK/Model/OrderElements/Customer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ public void Validate(Validations validationType = Validations.Weak)
[JsonProperty(PropertyName = "social")]
public SocialDetails[] Social { get; set; }

[JsonProperty(PropertyName = "buyer_anonymous_id")]
public string BuyerAnonymousId { get; set; }


}
}
4 changes: 2 additions & 2 deletions Riskified.SDK/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.3.8")]
[assembly: AssemblyFileVersion("2.0.3.8")]
[assembly: AssemblyVersion("2.0.3.9")]
[assembly: AssemblyFileVersion("2.0.3.9")]

0 comments on commit cb79ece

Please sign in to comment.