29 lines
770 B
TypeScript
29 lines
770 B
TypeScript
/* 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<selectedProductDto> | null;
|
|
/**
|
|
* Additional instructions or comments regarding the order.
|
|
*/
|
|
comments?: string | null;
|
|
};
|
|
|