/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */

/**
 * Client input to create a team.
 */
export type TeamCreateInput = {
  /**
   * A description of the team.
   */
  description?: string;
  /**
   * The display name of the team.
   */
  display_name?: string;
  /**
   * The unique slug for the team (used for routing).
   */
  slug: string;
};
