From 1136e384f80a21c4180cfd97cf9650a2ff1c976e Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Mon, 25 Sep 2023 17:51:13 +0200 Subject: [PATCH] CoapRequest - Added missing documentation --- source/doap/client/request.d | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/source/doap/client/request.d b/source/doap/client/request.d index c303224..0a2da24 100644 --- a/source/doap/client/request.d +++ b/source/doap/client/request.d @@ -54,11 +54,22 @@ package class CoapRequest this.timer = StopWatch(AutoStart.no); } + /** + * Gets the original request made + * + * Returns: the request packet + */ public CoapPacket getRequestPacket() { return this.requestPacket; } + /** + * Gets the token from the original request + * that was made + * + * Returns: the token + */ public ubyte[] getToken() { return this.requestPacket.getToken();