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

/**
 * Client input to update team settings.
 */
export type TeamSettingsInput = {
  /**
   * The display name of the team.
   */
  display_name?: string | null;
  /**
   * The URL for the team's github account. This is displayed on the team page.
   */
  github_url?: string;
  /**
   * The URL for the team's Twitter account. This is displayed on the team page.
   */
  twitter_url?: string | null;
  /**
   * The URL for the team's website. This is displayed on the team page.
   */
  url?: string | null;
};
