import type * as Square from "../index"; /** * Represents an output from a call to [CreateInventoryAdjustmentReason](api-endpoint:Inventory-CreateInventoryAdjustmentReason). */ export interface CreateInventoryAdjustmentReasonResponse { /** Errors encountered when the request fails. */ errors?: Square.Error_[]; /** The successfully created inventory adjustment reason. */ adjustmentReason?: Square.InventoryAdjustmentReason; }