import type * as Square from "../index"; /** * Identifies a standard or custom inventory adjustment reason. */ export interface InventoryAdjustmentReasonId { /** * The adjustment reason type. * See [Type](#type-type) for possible values */ type: Square.InventoryAdjustmentReasonIdType; /** * The Square-generated ID of the custom adjustment reason. This field * is only set when `type` is `CUSTOM`. */ customReasonId?: string | null; }