PHP Classes

File: src/Enums/Http/ContentType.php

Recommend this page to a friend!
  Classes of Nahid Bin Azhar   Google Generative AI   src/Enums/Http/ContentType.php   Download  
File: src/Enums/Http/ContentType.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Google Generative AI
Get answers to prompts using Google Gemini AI
Author: By
Last change:
Date: 2 days ago
Size: 199 bytes
 

Contents

Class file image Download
<?php

namespace Nahid\GoogleGenerativeAI\Enums\Http;

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