@@ -78,6 +78,7 @@ public String getNote() {
7878 * Sets an additional field which can be used for arbitrary storage. is typically used for
7979 * storing your internal identifiers for customer.
8080 * @param note Note to store.
81+ * @return this.
8182 */
8283 @ NotNull
8384 public WatchlistCandidate setNote (@ Nullable final String note ) {
@@ -97,6 +98,7 @@ public String getSSN() {
9798 /**
9899 * Can be either the last 4 digits of the US Social Security Number or the whole SSN.
99100 * @param ssn SSN to use.
101+ * @return this.
100102 */
101103 @ NotNull
102104 public WatchlistCandidate setSSN (@ Nullable final String ssn ) {
@@ -116,6 +118,7 @@ public String getPassport() {
116118 /**
117119 * Sets the passport number of the individual being verified. is only used for verifying non-US customers.
118120 * @param passport Passport data.
121+ * @return this.
119122 */
120123 @ NotNull
121124 public WatchlistCandidate setPassport (@ Nullable final String passport ) {
@@ -138,6 +141,7 @@ public Date getDateOfBirth() {
138141 /**
139142 * Set the date of birth of your candidate.
140143 * @param dateOfBirth Date of birth
144+ * @return this.
141145 */
142146 @ NotNull
143147 public WatchlistCandidate setDateOfBirth (@ Nullable final Date dateOfBirth ) {
@@ -160,6 +164,7 @@ public String getFirstName() {
160164 /**
161165 * Sets the legal first name of the customer.
162166 * @param firstName First name.
167+ * @return this.
163168 */
164169 @ NotNull
165170 public WatchlistCandidate setFirstName (@ NotNull final String firstName ) {
@@ -179,6 +184,7 @@ public String getMiddleName() {
179184 /**
180185 * Sets the legal middle name of the customer.
181186 * @param middleName Middle name.
187+ * @return this.
182188 */
183189 @ NotNull
184190 public WatchlistCandidate setMiddleName (@ NotNull final String middleName ) {
@@ -198,6 +204,7 @@ public String getLastName() {
198204 /**
199205 * Sets the legal last name.
200206 * @param lastName Last name.
207+ * @return this.
201208 */
202209 @ NotNull
203210 public WatchlistCandidate setLastName (@ NotNull final String lastName ) {
@@ -217,6 +224,7 @@ public String getStreet1() {
217224 /**
218225 * Sets the primary street address of the customer. This is automatically normalized.
219226 * @param street1 Street address.
227+ * @return this.
220228 */
221229 @ NotNull
222230 public WatchlistCandidate setStreet1 (@ NotNull final String street1 ) {
@@ -236,6 +244,7 @@ public String getStreet2() {
236244 /**
237245 * Sets the second address line typically used for apartment or suite numbers. This is automatically normalized.
238246 * @param street2 Street address (line 2)
247+ * @return this.
239248 */
240249 @ NotNull
241250 public WatchlistCandidate setStreet2 (@ NotNull final String street2 ) {
@@ -255,6 +264,7 @@ public String getCity() {
255264 /**
256265 * Sets the city name of the customer. This is automatically normalized.
257266 * @param city City name.
267+ * @return this.
258268 */
259269 @ NotNull
260270 public WatchlistCandidate setCity (@ NotNull final String city ) {
@@ -274,6 +284,7 @@ public String getState() {
274284 /**
275285 * Sets the state of the customer. Should be of the FIPS code form. For example California would be CA.
276286 * @param state State
287+ * @return this.
277288 */
278289 @ NotNull
279290 public WatchlistCandidate setState (@ Nullable final String state ) {
@@ -293,6 +304,7 @@ public String getPostalCode() {
293304 /**
294305 * Sets the postal code.
295306 * @param postalCode Postal code.
307+ * @return this.
296308 */
297309 @ NotNull
298310 public WatchlistCandidate setPostalCode (@ Nullable final String postalCode ) {
@@ -312,6 +324,7 @@ public String getCountryCode() {
312324 /**
313325 * Sets the country of the customer. Should be of the ISO code form.
314326 * @param countryCode Country code.
327+ * @return this.
315328 */
316329 @ NotNull
317330 public WatchlistCandidate setCountryCode (@ Nullable final String countryCode ) {
0 commit comments