-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed type of the field ExtFieldCustomData
- Loading branch information
Showing
3 changed files
with
22 additions
and
22 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 |
---|---|---|
|
@@ -21,12 +21,10 @@ Namespace Route4MeSDKTest.Examples | |
.EXT_FIELD_last_name = "Carol", | ||
.EXT_FIELD_email = "[email protected]", | ||
.EXT_FIELD_phone = "897946541", | ||
.EXT_FIELD_custom_data = (New List(Of Dictionary(Of String, String))() From { | ||
New Dictionary(Of String, String)() From { | ||
.EXT_FIELD_custom_data = New Dictionary(Of String, String)() From { | ||
{"order_type", "scheduled order"} | ||
} | ||
}).ToArray(), | ||
.day_scheduled_for_YYMMDD = "2017-12-20", | ||
}, | ||
.day_scheduled_for_YYMMDD = DateTime.Now.ToString("yyyy-MM-dd"), | ||
.local_time_window_end = 39000, | ||
.local_time_window_end_2 = 46200, | ||
.local_time_window_start = 37800, | ||
|
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 |
---|---|---|
|
@@ -8955,11 +8955,7 @@ End Class | |
.EXT_FIELD_last_name = "Carol", | ||
.EXT_FIELD_email = "[email protected]", | ||
.EXT_FIELD_phone = "897946541", | ||
.EXT_FIELD_custom_data = (New List(Of Dictionary(Of String, String))() From { | ||
New Dictionary(Of String, String)() From { | ||
{"order_type", "scheduled order"} | ||
} | ||
}).ToArray(), | ||
.EXT_FIELD_custom_data = New Dictionary(Of String, String)() From {{"order_type", "scheduled order"}}, | ||
.day_scheduled_for_YYMMDD = "2017-12-20", | ||
.local_time_window_end = 39000, | ||
.local_time_window_end_2 = 46200, | ||
|