/home/smartonegroup/www/veroserv/vendor/openai-php/client/src/Enums/Transporter/ContentType.php
<?php

declare(strict_types=1);

namespace OpenAI\Enums\Transporter;

/**
 * @internal
 */
enum ContentType: string
{
    case JSON = 'application/json';
    case MULTIPART = 'multipart/form-data';
    case TEXT_PLAIN = 'text/plain';
}