Dump off the swaggerIo generator with tests removed and fix for Round->loser and Round->dicerolls

This commit is contained in:
Tim
2021-11-25 18:24:54 +01:00
commit 8d925075da
30 changed files with 7795 additions and 0 deletions

View File

@ -0,0 +1,8 @@
# AllOfRoundLoser
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -0,0 +1,10 @@
# GameIsStarted
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**started** | **bool** | | [optional]
**game_state** | [**\Swagger\Client\Model\GameState**](GameState.md) | | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

15
docs/Model/GameRules.md Normal file
View File

@ -0,0 +1,15 @@
# GameRules
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**start_dice_per_player** | **int** | | [optional]
**higher_count_lower_value** | **bool** | | [optional]
**joker_counts_double** | **bool** | | [optional]
**has_joker** | **bool** | | [optional]
**has_palifico** | **bool** | | [optional]
**has_calza** | **bool** | | [optional]
**joker_die_value** | **int** | | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

15
docs/Model/GameState.md Normal file
View File

@ -0,0 +1,15 @@
# GameState
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**state** | **string** | | [optional]
**code** | **string** | | [optional]
**rounds** | [**\Swagger\Client\Model\Round[]**](Round.md) | | [optional]
**players** | [**\Swagger\Client\Model\Player[]**](Player.md) | | [optional]
**current_player** | [**\Swagger\Client\Model\Player**](Player.md) | | [optional]
**owning_player** | [**\Swagger\Client\Model\Player**](Player.md) | | [optional]
**rules** | [**\Swagger\Client\Model\GameRules**](GameRules.md) | | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@ -0,0 +1,10 @@
# MessageResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**message** | **string** | | [optional]
**errors** | **string[]** | | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

11
docs/Model/MyTurn.md Normal file
View File

@ -0,0 +1,11 @@
# MyTurn
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**turn** | **bool** | | [optional]
**game_state** | [**\Swagger\Client\Model\GameState**](GameState.md) | | [optional]
**errors** | **string[]** | | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

11
docs/Model/Player.md Normal file
View File

@ -0,0 +1,11 @@
# Player
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **string** | | [optional]
**hash** | **string** | | [optional]
**name** | **string** | | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

11
docs/Model/PlayerCode.md Normal file
View File

@ -0,0 +1,11 @@
# PlayerCode
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**player** | [**\Swagger\Client\Model\Player**](Player.md) | | [optional]
**code** | **string** | | [optional]
**errors** | **string[]** | | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

10
docs/Model/PlayerGuess.md Normal file
View File

@ -0,0 +1,10 @@
# PlayerGuess
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**dice_count** | **int** | |
**die_value** | **int** | |
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

13
docs/Model/Round.md Normal file
View File

@ -0,0 +1,13 @@
# Round
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**number** | **int** | | [optional]
**turns** | [**\Swagger\Client\Model\Turn[]**](Turn.md) | | [optional]
**loser** | [**AllOfRoundLoser**](AllOfRoundLoser.md) | | [optional]
**my_rolls** | [**int[][]**](array.md) | | [optional]
**rolls** | **int[]** | | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

12
docs/Model/Turn.md Normal file
View File

@ -0,0 +1,12 @@
# Turn
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**number** | **int** | | [optional]
**player** | [**\Swagger\Client\Model\Player**](Player.md) | | [optional]
**dice_count** | **int** | | [optional]
**die_value** | **int** | | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)