/**
 * @example
 *     {
 *         name: "customer-support"
 *     }
 */
export interface CreateProjectRequest {
    /** The name of the project. Can only contain lowercase letters, numbers and hyphens. Must be unique within the workspace. */
    name: string;
}
