FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
doc
/
models
Edit File: loyalty-event-adjust-points.md
# Loyalty Event Adjust Points Provides metadata when the event `type` is `ADJUST_POINTS`. ## Structure `LoyaltyEventAdjustPoints` ## Fields | Name | Type | Tags | Description | Getter | Setter | | --- | --- | --- | --- | --- | --- | | `loyaltyProgramId` | `?string` | Optional | The Square-assigned ID of the [loyalty program](entity:LoyaltyProgram).<br>**Constraints**: *Maximum Length*: `36` | getLoyaltyProgramId(): ?string | setLoyaltyProgramId(?string loyaltyProgramId): void | | `points` | `int` | Required | The number of points added or removed. | getPoints(): int | setPoints(int points): void | | `reason` | `?string` | Optional | The reason for the adjustment of points. | getReason(): ?string | setReason(?string reason): void | ## Example (as JSON) ```json { "loyalty_program_id": "loyalty_program_id4", "points": 98, "reason": "reason0" } ```
Save
Back