/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ResourceLink } from './ResourceLink'; /** * * @export * @interface TeamDto */ export interface TeamDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof TeamDto */ links: { [key: string]: ResourceLink; }; /** * The ID of the team. * @type {string} * @memberof TeamDto */ id: string; /** * The name of the team. * @type {string} * @memberof TeamDto */ name: string; /** * The version of the team. * @type {number} * @memberof TeamDto */ version: number; /** * The timestamp when the team has been created. * @type {Date} * @memberof TeamDto */ created: Date; /** * The timestamp when the team has been modified last. * @type {Date} * @memberof TeamDto */ lastModified: Date; /** * The role name of the user. * @type {string} * @memberof TeamDto */ roleName?: string | null; } /** * Check if a given object implements the TeamDto interface. */ export declare function instanceOfTeamDto(value: any): value is TeamDto; export declare function TeamDtoFromJSON(json: any): TeamDto; export declare function TeamDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): TeamDto; export declare function TeamDtoToJSON(value?: TeamDto | null, _ignoreDiscriminator?: boolean): any;