mirror of
https://github.com/Tribufu/TribufuJS
synced 2026-08-08 20:31:05 +00:00
Release v1.2.0
This commit is contained in:
parent
1f73b2b509
commit
596fb5e642
55 changed files with 3692 additions and 1150 deletions
|
|
@ -2,9 +2,9 @@
|
|||
/* eslint-disable */
|
||||
/**
|
||||
* Tribufu API
|
||||
* REST API to access Tribufu services.
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.1.0
|
||||
* The version of the OpenAPI document: 1.2.0
|
||||
* Contact: contact@tribufu.com
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
|
|
@ -39,7 +39,7 @@ export interface GroupGame {
|
|||
* @type {string}
|
||||
* @memberof GroupGame
|
||||
*/
|
||||
groupId?: string;
|
||||
groupId: string;
|
||||
/**
|
||||
*
|
||||
* @type {Group}
|
||||
|
|
@ -82,6 +82,7 @@ export interface GroupGame {
|
|||
* Check if a given object implements the GroupGame interface.
|
||||
*/
|
||||
export function instanceOfGroupGame(value: object): value is GroupGame {
|
||||
if (!('groupId' in value) || value['groupId'] === undefined) return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
@ -95,7 +96,7 @@ export function GroupGameFromJSONTyped(json: any, ignoreDiscriminator: boolean):
|
|||
}
|
||||
return {
|
||||
|
||||
'groupId': json['group_id'] == null ? undefined : json['group_id'],
|
||||
'groupId': json['group_id'],
|
||||
'group': json['group'] == null ? undefined : GroupFromJSON(json['group']),
|
||||
'applicationId': json['application_id'] == null ? undefined : json['application_id'],
|
||||
'application': json['application'] == null ? undefined : ApplicationFromJSON(json['application']),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue