lfk-client-js/dist/models/ResponseRunnerOrganisation....

10 lines
264 B
TypeScript

import type { Address } from './Address';
import type { GroupContact } from './GroupContact';
export declare type ResponseRunnerOrganisation = {
address: Address;
teams: Array<any>;
id: number;
name: string;
contact?: GroupContact;
};