-
-
Save shopifypartners/0c1653b78db3556d0be893771e8037d9 to your computer and use it in GitHub Desktop.
Cache example for Shipping Applications development good practices
This file contains hidden or 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