Rewrite to a API trait.

This commit is contained in:
2026-01-11 14:12:54 +01:00
parent ea9f05b048
commit 88f8cf76ef
45 changed files with 1384 additions and 1030 deletions

View File

@@ -476,7 +476,7 @@ Name | Type | Description | Required | Notes
## owned_games_get
> Vec<String> owned_games_get(user_id)
> Vec<models::OwnedGame> owned_games_get(user_id)
### Parameters
@@ -488,7 +488,7 @@ Name | Type | Description | Required | Notes
### Return type
**Vec<String>**
[**Vec<models::OwnedGame>**](OwnedGame.md)
### Authorization

View File

@@ -6,6 +6,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **String** | |
**name** | **String** | |
**location_id** | Option<**String**> | | [optional]
**datetime** | **String** | |
**owner_id** | **String** | |

View File

@@ -0,0 +1,12 @@
# OwnedGame
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**game_id** | **String** | |
**location_id** | Option<**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)