FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
doc
/
models
Edit File: loyalty-program-terminology.md
# Loyalty Program Terminology Represents the naming used for loyalty points. ## Structure `LoyaltyProgramTerminology` ## Fields | Name | Type | Tags | Description | Getter | Setter | | --- | --- | --- | --- | --- | --- | | `one` | `string` | Required | A singular unit for a point (for example, 1 point is called 1 star).<br>**Constraints**: *Minimum Length*: `1` | getOne(): string | setOne(string one): void | | `other` | `string` | Required | A plural unit for point (for example, 10 points is called 10 stars).<br>**Constraints**: *Minimum Length*: `1` | getOther(): string | setOther(string other): void | ## Example (as JSON) ```json { "one": "one4", "other": "other0" } ```
Save
Back