import type * as Merge from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { ItemFulfillmentCompany } from "./ItemFulfillmentCompany"; import { ItemFulfillmentCustomer } from "./ItemFulfillmentCustomer"; import { ItemFulfillmentLinesItem } from "./ItemFulfillmentLinesItem"; import { ItemFulfillmentSalesOrder } from "./ItemFulfillmentSalesOrder"; import { ItemFulfillmentStatus } from "./ItemFulfillmentStatus"; import { RemoteData } from "./RemoteData"; import { RemoteField } from "./RemoteField"; export declare const ItemFulfillment: core.serialization.ObjectSchema; export declare namespace ItemFulfillment { interface Raw { id?: string | null; remote_id?: string | null; created_at?: string | null; modified_at?: string | null; sales_order?: ItemFulfillmentSalesOrder.Raw | null; fulfillment_date?: string | null; customer?: ItemFulfillmentCustomer.Raw | null; company?: ItemFulfillmentCompany.Raw | null; status?: ItemFulfillmentStatus.Raw | null; memo?: string | null; lines?: ItemFulfillmentLinesItem.Raw[] | null; remote_created_at?: string | null; remote_updated_at?: string | null; remote_was_deleted?: boolean | null; field_mappings?: Record | null; remote_data?: RemoteData.Raw[] | null; remote_fields?: RemoteField.Raw[] | null; } }