/**
 * @name HTTPVerb
 * @description HTTP verbs (in the HTTP command line).
 * @description GET | HEAD | POST | PUT | DELETE | PATCH
 * @see <a href="https://hl7.org/fhir/R4/valueset-http-verb.html">HTTPVerb</a>
 * @version R4
 * @author Roberto Araneda Espinoza
 */
export type HTTPVerbType = 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
