You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
/** 阶段0 录证 axel/quote 响应精简 fixture */
|
|
export const AXEL_QUOTE_BODY = {
|
|
data: {
|
|
rates: {
|
|
standard: {
|
|
lowest: {
|
|
price: 423.49,
|
|
finalPrice: 428.48,
|
|
days: 8,
|
|
serviceLevel: "standard",
|
|
serviceType: "lowest",
|
|
serviceCommitmentDescription: "Standard",
|
|
},
|
|
fastest: {
|
|
price: 662.08,
|
|
finalPrice: 667.07,
|
|
days: 3,
|
|
serviceLevel: "standard",
|
|
serviceType: "fastest",
|
|
serviceCommitmentDescription: "LTL Standard",
|
|
},
|
|
bestValue: {
|
|
price: 576.24,
|
|
days: 6,
|
|
serviceLevel: "standard",
|
|
serviceType: "bestValue",
|
|
},
|
|
},
|
|
guaranteed: {
|
|
bestValue: {
|
|
price: 809.16,
|
|
finalPrice: 814.15,
|
|
days: 3,
|
|
serviceLevel: "guaranteed",
|
|
serviceType: "bestValue",
|
|
serviceCommitmentDescription: "Urgent Care (Guaranteed by 5pm)",
|
|
},
|
|
},
|
|
},
|
|
availableRates: {},
|
|
},
|
|
key: "quote_test",
|
|
metadata: {},
|
|
};
|
|
|
|
export const AXEL_QUOTE_URL = "https://services.mothership.com/axel/quote";
|