@@ -122,6 +122,7 @@ void scoreQuestionSet(@Path("id") @NotNull final String questionSetId
122122 * to ask 3 questions, only submit the 3 questions which you would like scored. </p>
123123 * Thread: Any [Determined by settings on Observable]
124124 * @param answers Question set request.
125+ * @return Observable containing the question set
125126 */
126127 @ NotNull
127128 @ POST ("/questions/{id}/score" )
@@ -144,6 +145,7 @@ void getQuestionSet(@Path("id") @NotNull final String questionSetId
144145 * set, we will also return the last score of your submitted answers. </p>
145146 * Thread: Any [Determined by settings on Observable]
146147 * @param questionSetId Question set ID.
148+ * @return Observable containing the question set
147149 */
148150 @ NotNull
149151 @ GET ("/questions/{id}" )
@@ -174,6 +176,7 @@ void getQuestionSet(@Path("id") @NotNull final String questionSetId
174176 * Please be aware that the response time can sometimes be more than 6 seconds due to the speed of some
175177 * government data sources. </p>
176178 * Thread: Asynchronous
179+ * @param company Company to create.
177180 * @param callback Callback to use.
178181 */
179182 @ POST ("/companies" )
@@ -185,6 +188,7 @@ void getQuestionSet(@Path("id") @NotNull final String questionSetId
185188 * Please be aware that the response time can sometimes be more than 6 seconds due to the speed of some
186189 * government data sources. </p>
187190 * Thread: Any [Determined by settings on Observable]
191+ * @param company Company to create
188192 * @return Observable containing the Company validation.
189193 */
190194 @ POST ("/companies" )
@@ -203,6 +207,7 @@ void getQuestionSet(@Path("id") @NotNull final String questionSetId
203207 * <p>You can pull up a single company verification at any time (typically this is used for auditing purposes). </p>
204208 * Thread: Any [Determined by settings on Observable]
205209 * @param companyId Company ID.
210+ * @return Observable containing the company
206211 */
207212 @ NotNull
208213 @ GET ("/companies/{id}" )
0 commit comments