import { SalesDataInvoiceCommentCreationInterface } from './salesDataInvoiceCommentCreationInterface'; import { SalesDataInvoiceCreationArgumentsInterface } from './salesDataInvoiceCreationArgumentsInterface'; import { SalesDataInvoiceItemCreationInterface } from './salesDataInvoiceItemCreationInterface'; export interface SalesInvoiceOrderV1ExecutePostBody { capture?: boolean; items?: Array; notify?: boolean; appendComment?: boolean; comment?: SalesDataInvoiceCommentCreationInterface; arguments?: SalesDataInvoiceCreationArgumentsInterface; }