mirror of
https://github.com/tribufu/sdk-js
synced 2026-02-04 18:33:09 +00:00
Release v1.3.0
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
* Tribufu API
|
||||
* API to access Tribufu services.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.2.0
|
||||
* The version of the OpenAPI document: 1.3.0
|
||||
* Contact: contact@tribufu.com
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
@@ -42,7 +42,7 @@ export interface Group {
|
||||
* @type {string}
|
||||
* @memberof Group
|
||||
*/
|
||||
tag: string | null;
|
||||
tag?: string | null;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
@@ -122,7 +122,6 @@ export interface Group {
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
@@ -139,7 +138,7 @@ 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'],
|
||||
'tag': json['tag'],
|
||||
'tag': json['tag'] == null ? undefined : 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