You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
475 B
PHP
21 lines
475 B
PHP
<?php
|
|
|
|
const SampleCart = array(
|
|
"item_amt" => 0.01,
|
|
"tax_amt" => 0,
|
|
"insurance_fee" => 0,
|
|
"handling_fee" => 0,
|
|
"shipping_amt" => 0,
|
|
"shipping_discount" => 0,
|
|
"total_amt" => 0.01,
|
|
"currency" => "USD",
|
|
"shipping_info" => array(
|
|
"recipient_name" => "John Doe",
|
|
"line1" => "55 East 52nd Street",
|
|
"line2" => "21st Floor",
|
|
"city" => "New York",
|
|
"state" => "NY",
|
|
"postal_code" => "10022"
|
|
)
|
|
);
|