import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { InventoryAdjustmentGroup } from "./InventoryAdjustmentGroup"; import { InventoryAdjustmentReasonId } from "./InventoryAdjustmentReasonId"; import { InventoryState } from "./InventoryState"; import { Money } from "./Money"; import { SourceApplication } from "./SourceApplication"; export declare const InventoryAdjustment: core.serialization.ObjectSchema; export declare namespace InventoryAdjustment { interface Raw { id?: string | null; reference_id?: (string | null | undefined) | null; from_state?: InventoryState.Raw | null; to_state?: InventoryState.Raw | null; from_location_id?: (string | null | undefined) | null; to_location_id?: (string | null | undefined) | null; catalog_object_id?: (string | null | undefined) | null; catalog_object_type?: (string | null | undefined) | null; quantity?: (string | null | undefined) | null; total_price_money?: Money.Raw | null; occurred_at?: (string | null | undefined) | null; created_at?: string | null; source?: SourceApplication.Raw | null; employee_id?: (string | null | undefined) | null; team_member_id?: (string | null | undefined) | null; transaction_id?: string | null; refund_id?: string | null; purchase_order_id?: string | null; goods_receipt_id?: string | null; adjustment_group?: InventoryAdjustmentGroup.Raw | null; cost_money?: Money.Raw | null; vendor_id?: (string | null | undefined) | null; physical_count_id?: string | null; reason_id?: InventoryAdjustmentReasonId.Raw | null; } }