interface InternalHttp exposes [Request, Method, Header, TimeoutConfig, Part, Body, Response, Metadata, Error] imports [] Request : { method : Method, headers : List Header, url : Str, body : Body, timeout : TimeoutConfig, } Method : [Options, Get, Post, Put, Delete, Head, Trace, Connect, Patch] Header : [Header Str Str] # Name is distinguished from the Timeout tag used in Response and Error TimeoutConfig : [TimeoutMilliseconds U64, NoTimeout] Part : [Part Str (List U8)] Body : [ Body [MimeType Str] (List U8), EmptyBody, ] Response : [ BadRequest Str, Timeout, NetworkError, BadStatus Metadata (List U8), GoodStatus Metadata (List U8), ] Metadata : { url : Str, statusCode : U16, statusText : Str, headers : List Header, } Error : [ BadRequest Str, Timeout, NetworkError, BadStatus U16, BadBody Str, ]