/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { checkoutOptionsDto } from './checkoutOptionsDto'; import type { paymentType } from './paymentType'; import type { selectedProductDto } from './selectedProductDto'; /** * Data transfer object for common order information. */ export type orderDto = { sellerId?: string; /** * The consumer's public key. */ consumerKey?: string; paymentType?: paymentType; options?: checkoutOptionsDto; /** * The items in this order. */ items?: Array | null; /** * Additional instructions or comments regarding the order. */ comments?: string | null; };