Last active
October 25, 2022 17:13
-
-
Save krzysztofbialek/effab2bdefba64426b19846b66476d39 to your computer and use it in GitHub Desktop.
Cache example for Shipping Applications development good practices
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
{ | |
destination_address: { | |
country_code: "CA", | |
province_code: "QC", | |
city: "Montreal", | |
address1: "address 1", | |
address2: "address 2", | |
address3: "address 3", | |
postal_code: "K2K2K2" | |
}, | |
origin_address: { | |
country_code: "CA", | |
province_code: "ON", | |
city: "Toronto", | |
address1: "address 1", | |
address2: "address 2", | |
address3: "address 3", | |
postal_code: "C3C3C3" | |
}, | |
items: [ | |
{ | |
id: 1, | |
name: 'item1', | |
weight: 1 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment