record Verb : Type Verb is a record that contains the HTTP method, status code, accept type, and response type
Totality: total
Visibility: public export
Constructor: MkVerb : Method -> StatusCode -> Type -> Type -> Verb
Projections:
.accept : Verb -> Type Accept type
.method : Verb -> Method HTTP method
.response : Verb -> Type Response type
.status : Verb -> StatusCode HTTP status code
.method : Verb -> Method HTTP method
Visibility: public exportmethod : Verb -> Method HTTP method
Visibility: public export.status : Verb -> StatusCode HTTP status code
Visibility: public exportstatus : Verb -> StatusCode HTTP status code
Visibility: public export.accept : Verb -> Type Accept type
Visibility: public exportaccept : Verb -> Type Accept type
Visibility: public export.response : Verb -> Type Response type
Visibility: public exportresponse : Verb -> Type Response type
Visibility: public exportVerbAccept : Verb -> Type- Visibility: public export
VerbResponse : Verb -> Type- Visibility: public export
Head' : StatusCode -> Type -> Type -> Verb Head verb
Visibility: public exportGet' : StatusCode -> Type -> Type -> Verb Get verb
Visibility: public exportPost' : StatusCode -> Type -> Type -> Verb Post verb
Visibility: public exportPut' : StatusCode -> Type -> Type -> Verb Put verb
Visibility: public exportDelete' : StatusCode -> Type -> Type -> Verb Delete verb
Visibility: public exportPatch' : StatusCode -> Type -> Type -> Verb Patch verb
Visibility: public exportHead : Type -> Type -> Verb Head verb with code 200
Visibility: public exportGet : Type -> Type -> Verb Get verb with code 200
Visibility: public exportPost : Type -> Type -> Verb Post verb with code 201
Visibility: public exportPut : Type -> Type -> Verb Put verb with code 200
Visibility: public exportDelete : Type -> Type -> Verb Delete verb with code 200
Visibility: public exportPatch : Type -> Type -> Verb Patch verb with code 200
Visibility: public exportPostCreated : Type -> Type -> Verb Post verb with code 201 (Created)
Visibility: public exportPutCreated : Type -> Type -> Verb Put verb with code 201 (Created)
Visibility: public exportGetAccepted : Type -> Type -> Verb Get verb with code 202 (Accepted)
Visibility: public exportPostAccepted : Type -> Type -> Verb Post verb with code 202 (Accepted)
Visibility: public exportDeleteAccepted : Type -> Type -> Verb Delete verb with code 202 (Accepted)
Visibility: public exportPatchAccepted : Type -> Type -> Verb Patch verb with code 202 (Accepted)
Visibility: public exportPutAccepted : Type -> Type -> Verb Put verb with code 202 (Accepted)
Visibility: public exportGetNonAuthoritative : Type -> Type -> Verb Get verb with code 203 (Non-Authoritative)
Visibility: public exportPostNonAuthoritative : Type -> Type -> Verb Post verb with code 203 (Non-Authoritative)
Visibility: public exportDeleteNonAuthoritative : Type -> Type -> Verb Delete verb with code 203 (Non-Authoritative)
Visibility: public exportPatchNonAuthoritative : Type -> Type -> Verb Patch verb with code 203 (Non-Authoritative)
Visibility: public exportPutNonAuthoritative : Type -> Type -> Verb Put verb with code 203 (Non-Authoritative)
Visibility: public exportGetNoContent : Type -> Type -> Verb Get verb with code 204 (No Content)
Visibility: public exportPostNoContent : Type -> Type -> Verb Post verb with code 204 (No Content)
Visibility: public exportDeleteNoContent : Type -> Type -> Verb Delete verb with code 204 (No Content)
Visibility: public exportPatchNoContent : Type -> Type -> Verb Patch verb with code 204 (No Content)
Visibility: public exportPutNoContent : Type -> Type -> Verb Put verb with code 204 (No Content)
Visibility: public exportHeadNoContent : Type -> Type -> Verb Head verb with code 204 (No Content)
Visibility: public exportHeadResetContent : Type -> Type -> Verb Head verb with code 205 (Reset Content)
Visibility: public exportGetResetContent : Type -> Type -> Verb Get verb with code 205 (Reset Content)
Visibility: public exportPostResetContent : Type -> Type -> Verb Post verb with code 205 (Reset Content)
Visibility: public exportDeleteResetContent : Type -> Type -> Verb Delete verb with code 205 (Reset Content)
Visibility: public exportPatchResetContent : Type -> Type -> Verb Patch verb with code 205 (Reset Content)
Visibility: public exportPutResetContent : Type -> Type -> Verb Put verb with code 205 (Reset Content)
Visibility: public export