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.
22 lines (21 loc) • 460 B
TypeScript
import { JobStatusEnum } from "./../../gqlTypes/globalTypes";
export interface InvoiceFragment {
__typename: "Invoice";
/**
* The ID of the object.
*/
id: string;
number: string | null;
/**
* Created date time of job in ISO 8601 format.
*/
createdAt: any;
/**
* URL to download an invoice.
*/
url: string | null;
/**
* Job status.
*/
status: JobStatusEnum;
}