import type * as Square from "../index"; /** * Represents the Square processing fee. */ export interface ProcessingFee { /** The timestamp of when the fee takes effect, in RFC 3339 format. */ effectiveAt?: string | null; /** The type of fee assessed or adjusted. The fee type can be `INITIAL` or `ADJUSTMENT`. */ type?: string | null; /** * The fee amount, which might be negative, that is assessed or adjusted by Square. * * Positive values represent funds being assessed, while negative values represent * funds being returned. */ amountMoney?: Square.Money; }