@@ -52,7 +52,7 @@ public Tokens addHeader(@NotNull String key, @NotNull String value) {
5252 /**
5353 * The Get all delivery tokens request returns the details of all the delivery tokens created in a stack.
5454 *
55- * @return Call<ResponseBody>
55+ * @return Call
5656 */
5757 public Call <ResponseBody > getDeliveryTokens () {
5858 return this .service .getDeliveryToken (this .headers );
@@ -63,7 +63,7 @@ public Call<ResponseBody> getDeliveryTokens() {
6363 *
6464 * @param tokenUid
6565 * the UID of the token that you want to retrieve
66- * @return Call<ResponseBody>
66+ * @return Call
6767 */
6868 public Call <ResponseBody > getDeliveryToken (@ NotNull String tokenUid ) {
6969 return this .service .getDeliveryToken (this .headers , tokenUid );
@@ -77,7 +77,7 @@ public Call<ResponseBody> getDeliveryToken(@NotNull String tokenUid) {
7777 *
7878 * @param requestBody
7979 * details of the delivery token in @{@link JSONObject} format
80- * @return Call<ResponseBody>
80+ * @return Call
8181 */
8282 public Call <ResponseBody > createDeliveryToken (@ NotNull JSONObject requestBody ) {
8383 return this .service .createDeliveryToken (this .headers , requestBody );
@@ -96,7 +96,7 @@ public Call<ResponseBody> createDeliveryToken(@NotNull JSONObject requestBody) {
9696 * the UID of the token that you want to retrieve
9797 * @param requestBody
9898 * the body should be of @{@link JSONObject} type
99- * @return Call<ResponseBody>
99+ * @return Call
100100 */
101101 public Call <ResponseBody > updateDeliveryToken (@ NotNull String tokenUid , @ NotNull JSONObject requestBody ) {
102102 return this .service .updateDeliveryToken (this .headers , tokenUid , requestBody );
@@ -107,7 +107,7 @@ public Call<ResponseBody> updateDeliveryToken(@NotNull String tokenUid, @NotNull
107107 *
108108 * @param tokenUid
109109 * the UID of the token that you want to retrieve
110- * @return Call<ResponseBody>
110+ * @return Call
111111 */
112112 public Call <ResponseBody > deleteDeliveryToken (@ NotNull String tokenUid ) {
113113 return this .service .deleteDeliveryToken (this .headers , tokenUid , false );
@@ -120,7 +120,7 @@ public Call<ResponseBody> deleteDeliveryToken(@NotNull String tokenUid) {
120120 * the UID of the token that you want to retrieve
121121 * @param isForce
122122 * provide ‘true’ to force delete a delivery token
123- * @return Call<ResponseBody>
123+ * @return Call
124124 */
125125 public Call <ResponseBody > deleteDeliveryToken (@ NotNull String tokenUid , @ NotNull Boolean isForce ) {
126126 return this .service .deleteDeliveryToken (this .headers , tokenUid , isForce );
@@ -130,7 +130,7 @@ public Call<ResponseBody> deleteDeliveryToken(@NotNull String tokenUid, @NotNull
130130 * The Get all management tokens request returns the details of all the management tokens generated in a stack and
131131 * NOT the actual management tokens.
132132 *
133- * @return Call<ResponseBody>
133+ * @return Call
134134 */
135135 public Call <ResponseBody > getManagementTokens () {
136136 return this .service .getManagementToken (this .headers );
@@ -142,7 +142,7 @@ public Call<ResponseBody> getManagementTokens() {
142142 *
143143 * @param tokenUid
144144 * the UID of the token that you want to retrieve
145- * @return Call<ResponseBody>
145+ * @return Call
146146 */
147147 public Call <ResponseBody > getManagementToken (@ NotNull String tokenUid ) {
148148 return this .service .getManagementToken (this .headers , tokenUid );
@@ -154,7 +154,7 @@ public Call<ResponseBody> getManagementToken(@NotNull String tokenUid) {
154154 *
155155 * @param requestBody
156156 * details of the management token in @{@link JSONObject} format
157- * @return Call<ResponseBody>
157+ * @return Call
158158 */
159159 public Call <ResponseBody > createManagementToken (@ NotNull JSONObject requestBody ) {
160160 return this .service .createManagementToken (this .headers , requestBody );
@@ -174,7 +174,7 @@ public Call<ResponseBody> createManagementToken(@NotNull JSONObject requestBody)
174174 * the UID of the token that you want to retrieve
175175 * @param requestBody
176176 * details of the management token in @{@link JSONObject} format
177- * @return Call<ResponseBody>
177+ * @return Call
178178 */
179179 public Call <ResponseBody > updateManagementToken (@ NotNull String tokenUid , @ NotNull JSONObject requestBody ) {
180180 return this .service .updateManagementToken (this .headers , tokenUid , requestBody );
@@ -185,7 +185,7 @@ public Call<ResponseBody> updateManagementToken(@NotNull String tokenUid, @NotNu
185185 *
186186 * @param tokenUid
187187 * the UID of the token that you want to retrieve
188- * @return Call<ResponseBody>
188+ * @return Call
189189 */
190190 public Call <ResponseBody > deleteManagementToken (@ NotNull String tokenUid ) {
191191 return this .service .deleteManagementToken (this .headers , tokenUid );
0 commit comments