sindri
Version:
The Sindri Labs JavaScript SDK and CLI tool.
23 lines (21 loc) • 432 B
text/typescript
/* 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;
};