import type * as Square from "../index"; export interface OrderLineItemAppliedServiceCharge { /** A unique ID that identifies the applied service charge only within this order. */ uid?: string | null; /** * The `uid` of the service charge that the applied service charge represents. It must * reference a service charge present in the `order.service_charges` field. * * This field is immutable. To change which service charges apply to a line item, * delete and add a new `OrderLineItemAppliedServiceCharge`. */ serviceChargeUid: string; /** The amount of money applied by the service charge to the line item. */ appliedMoney?: Square.Money; }