mirror of
https://github.com/tribufu/tribufu-js
synced 2026-06-01 09:42:36 +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).
|
||||
|
|
@ -30,7 +30,7 @@ export interface GameServerCluster {
|
|||
* @type {string}
|
||||
* @memberof GameServerCluster
|
||||
*/
|
||||
name?: string | null;
|
||||
name: string | null;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
|
|
@ -109,6 +109,7 @@ export interface GameServerCluster {
|
|||
* Check if a given object implements the GameServerCluster interface.
|
||||
*/
|
||||
export function instanceOfGameServerCluster(value: object): value is GameServerCluster {
|
||||
if (!('name' in value) || value['name'] === undefined) return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
@ -123,7 +124,7 @@ export function GameServerClusterFromJSONTyped(json: any, ignoreDiscriminator: b
|
|||
return {
|
||||
|
||||
'id': json['id'] == null ? undefined : json['id'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'name': json['name'],
|
||||
'description': json['description'] == null ? undefined : json['description'],
|
||||
'gameId': json['game_id'] == null ? undefined : json['game_id'],
|
||||
'websiteUrl': json['website_url'] == null ? undefined : json['website_url'],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue