mirror of
https://github.com/tribufu/sdk-js
synced 2026-02-04 18:33:09 +00:00
Release v1.2.0
This commit is contained in:
@@ -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).
|
||||
@@ -36,13 +36,13 @@ export interface Group {
|
||||
* @type {string}
|
||||
* @memberof Group
|
||||
*/
|
||||
name?: string | null;
|
||||
name: string | null;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof Group
|
||||
*/
|
||||
tag?: string | null;
|
||||
tag: string | null;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
@@ -121,6 +121,8 @@ export interface Group {
|
||||
* Check if a given object implements the Group interface.
|
||||
*/
|
||||
export function instanceOfGroup(value: object): value is Group {
|
||||
if (!('name' in value) || value['name'] === undefined) return false;
|
||||
if (!('tag' in value) || value['tag'] === undefined) return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -136,8 +138,8 @@ export function GroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): Gro
|
||||
|
||||
'id': json['id'] == null ? undefined : json['id'],
|
||||
'uuid': json['uuid'] == null ? undefined : json['uuid'],
|
||||
'name': json['name'] == null ? undefined : json['name'],
|
||||
'tag': json['tag'] == null ? undefined : json['tag'],
|
||||
'name': json['name'],
|
||||
'tag': json['tag'],
|
||||
'description': json['description'] == null ? undefined : json['description'],
|
||||
'type': json['type'] == null ? undefined : json['type'],
|
||||
'privacy': json['privacy'] == null ? undefined : json['privacy'],
|
||||
|
||||
Reference in New Issue
Block a user