15 lines
317 B
TypeScript
15 lines
317 B
TypeScript
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
|
|
import type { Address } from './Address';
|
|
import type { GroupContact } from './GroupContact';
|
|
|
|
export type ResponseRunnerOrganisation = {
|
|
address: Address;
|
|
teams: Array<any>;
|
|
id: number;
|
|
name: string;
|
|
contact?: GroupContact;
|
|
}
|