usimple-saleor-sdk
Version:
This package contains all queries and mutations that are used in our sample storefront. It can be used for semi-custom or fully-custom (with ability to extend existing queries) storefront solutions.
34 lines (33 loc) • 623 B
TypeScript
export interface OrderPrice_gross {
__typename: "Money";
/**
* Amount of money.
*/
amount: number;
/**
* Currency code.
*/
currency: string;
}
export interface OrderPrice_net {
__typename: "Money";
/**
* Amount of money.
*/
amount: number;
/**
* Currency code.
*/
currency: string;
}
export interface OrderPrice {
__typename: "TaxedMoney";
/**
* Amount of money including taxes.
*/
gross: OrderPrice_gross;
/**
* Amount of money without taxes.
*/
net: OrderPrice_net;
}