aboutsummaryrefslogtreecommitdiff
path: root/jb-ui/src/api_fsb/docs/RaffleUserView.md
diff options
context:
space:
mode:
authorMax Nanis2026-02-18 20:42:03 -0500
committerMax Nanis2026-02-18 20:42:03 -0500
commit3eaa56f0306ead818f64c3d99fc6d230d9b970a4 (patch)
tree9fecc2f1456e6321572e0e65f57106916df173e2 /jb-ui/src/api_fsb/docs/RaffleUserView.md
downloadamt-jb-3eaa56f0306ead818f64c3d99fc6d230d9b970a4.tar.gz
amt-jb-3eaa56f0306ead818f64c3d99fc6d230d9b970a4.zip
HERE WE GO, HERE WE GO, HERE WE GO
Diffstat (limited to 'jb-ui/src/api_fsb/docs/RaffleUserView.md')
-rw-r--r--jb-ui/src/api_fsb/docs/RaffleUserView.md68
1 files changed, 68 insertions, 0 deletions
diff --git a/jb-ui/src/api_fsb/docs/RaffleUserView.md b/jb-ui/src/api_fsb/docs/RaffleUserView.md
new file mode 100644
index 0000000..f73f055
--- /dev/null
+++ b/jb-ui/src/api_fsb/docs/RaffleUserView.md
@@ -0,0 +1,68 @@
+# RaffleUserView
+
+
+## Properties
+
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+**name** | **string** | Name of contest. Can be displayed to user. | [default to undefined]
+**description** | **string** | | [optional] [default to undefined]
+**contest_type** | **string** | | [optional] [default to ContestTypeEnum_Raffle]
+**end_condition** | [**ContestEndCondition**](ContestEndCondition.md) | | [default to undefined]
+**prizes** | [**Array<ContestPrize>**](ContestPrize.md) | | [optional] [default to undefined]
+**starts_at** | **string** | When the contest starts | [optional] [default to undefined]
+**terms_and_conditions** | **string** | | [optional] [default to undefined]
+**status** | [**ContestStatus**](ContestStatus.md) | | [optional] [default to undefined]
+**country_isos** | **string** | | [optional] [default to undefined]
+**uuid** | **string** | | [optional] [default to undefined]
+**product_id** | **string** | Contest applies only to a single BP | [default to undefined]
+**created_at** | **string** | When this contest was created | [optional] [default to undefined]
+**updated_at** | **string** | When this contest was last modified. Does not include entries being created/modified | [optional] [default to undefined]
+**ended_at** | **string** | | [optional] [default to undefined]
+**end_reason** | [**ContestEndReason**](ContestEndReason.md) | | [optional] [default to undefined]
+**product_user_id** | **string** | | [default to undefined]
+**user_winnings** | [**Array<ContestWinner>**](ContestWinner.md) | The prizes won in this contest by the requested user | [optional] [default to undefined]
+**entry_type** | **string** | | [optional] [default to EntryTypeEnum_Cash]
+**entry_rule** | [**ContestEntryRule**](ContestEntryRule.md) | | [optional] [default to undefined]
+**current_amount** | [**CurrentAmount**](CurrentAmount.md) | | [optional] [default to undefined]
+**current_participants** | **number** | Count of unique participants | [optional] [default to 0]
+**user_amount** | [**UserAmount**](UserAmount.md) | | [default to undefined]
+**user_amount_today** | [**UserAmountToday**](UserAmountToday.md) | | [default to undefined]
+**current_win_probability** | **number** | Probability of this user winning 1 or more prizes, if the contestended right now | [readonly] [default to undefined]
+**projected_win_probability** | **number** | | [default to undefined]
+
+## Example
+
+```typescript
+import { RaffleUserView } from './api';
+
+const instance: RaffleUserView = {
+ name,
+ description,
+ contest_type,
+ end_condition,
+ prizes,
+ starts_at,
+ terms_and_conditions,
+ status,
+ country_isos,
+ uuid,
+ product_id,
+ created_at,
+ updated_at,
+ ended_at,
+ end_reason,
+ product_user_id,
+ user_winnings,
+ entry_type,
+ entry_rule,
+ current_amount,
+ current_participants,
+ user_amount,
+ user_amount_today,
+ current_win_probability,
+ projected_win_probability,
+};
+```
+
+[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)