import type * as Square from "../index"; /** * Represents an output from a call to [RetrieveInventoryAdjustmentReason](api-endpoint:Inventory-RetrieveInventoryAdjustmentReason). */ export interface RetrieveInventoryAdjustmentReasonResponse { /** Errors encountered when the request fails. */ errors?: Square.Error_[]; /** * The successfully retrieved inventory adjustment reason. Deleted custom * reasons can be retrieved by ID and have `is_deleted` set to `true`. */ adjustmentReason?: Square.InventoryAdjustmentReason; }