-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add customer phone and line item delivered to (erez)
- Loading branch information
Omri Mosseri
committed
Oct 20, 2015
1 parent
a4acf9d
commit f35d9ca
Showing
6 changed files
with
35 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -296,7 +296,8 @@ private static Order GenerateOrder(int orderNum) | |
email: "[email protected]", | ||
verifiedEmail: true, | ||
createdAt: new DateTime(2013, 12, 8, 14, 12, 12), | ||
notes: "No additional info"); | ||
notes: "No additional info", | ||
phone: "55523369"); | ||
|
||
// putting sample billing details | ||
var billing = new AddressInformation( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System; | ||
using System.Linq; | ||
using System.Collections.Generic; | ||
using System.Runtime.Serialization; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Riskified.SDK.Model.OrderElements | ||
{ | ||
// Used on the line item level, the pickup location for that product | ||
public enum DeliveredToType | ||
{ | ||
[EnumMember(Value = "shipping_address")] | ||
ShippingAddress, | ||
[EnumMember(Value = "store_pickup")] | ||
StorePickup | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters