new lib version [CI SKIP]

This commit is contained in:
2020-12-13 08:11:57 +00:00
parent 20f716d134
commit f5489e1b1e
88 changed files with 1750 additions and 0 deletions

13
dist/models/ResponseRunnerTeam.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { GroupContact } from './GroupContact';
import type { RunnerOrganisation } from './RunnerOrganisation';
export type ResponseRunnerTeam = {
parentGroup: RunnerOrganisation;
id: number;
name: string;
contact?: GroupContact;
}