@@ -287,7 +287,8 @@ open class PersonalizationClient {
287287 )
288288 }
289289
290- /// - parameter userToken: (path) userToken representing the user for which to fetch the Personalization profile.
290+ /// - parameter userToken: (path) Unique identifier representing a user for which to fetch the personalization
291+ /// profile.
291292 /// - returns: DeleteUserProfileResponse
292293 @available ( macOS 10 . 15 , iOS 13 . 0 , tvOS 13 . 0 , watchOS 6 . 0 , * )
293294 open func deleteUserProfile(
@@ -306,14 +307,13 @@ open class PersonalizationClient {
306307 return body
307308 }
308309
309- // Delete the user profile and all its associated data. Returns, as part of the response, a date until which the
310- // data can safely be considered as deleted for the given user. This means if you send events for the given user
311- // before this date, they will be ignored. Any data received after the deletedUntil date will start building a new
312- // user profile. It might take a couple hours for the deletion request to be fully processed.
310+ // Deletes a user profile. The response includes a date and time when the user profile can safely be considered
311+ // deleted.
313312 // Required API Key ACLs:
314313 // - recommendation
315314 //
316- // - parameter userToken: (path) userToken representing the user for which to fetch the Personalization profile.
315+ // - parameter userToken: (path) Unique identifier representing a user for which to fetch the personalization
316+ // profile.
317317 // - returns: RequestBuilder<DeleteUserProfileResponse>
318318
319319 open func deleteUserProfileWithHTTPInfo(
@@ -363,8 +363,7 @@ open class PersonalizationClient {
363363 return body
364364 }
365365
366- // The strategy contains information on the events and facets that impact user profiles and personalized search
367- // results.
366+ // Retrieves the current personalization strategy.
368367 // Required API Key ACLs:
369368 // - recommendation
370369 // - returns: RequestBuilder<PersonalizationStrategyParams>
@@ -389,7 +388,8 @@ open class PersonalizationClient {
389388 )
390389 }
391390
392- /// - parameter userToken: (path) userToken representing the user for which to fetch the Personalization profile.
391+ /// - parameter userToken: (path) Unique identifier representing a user for which to fetch the personalization
392+ /// profile.
393393 /// - returns: GetUserTokenResponse
394394 @available ( macOS 10 . 15 , iOS 13 . 0 , tvOS 13 . 0 , watchOS 6 . 0 , * )
395395 open func getUserTokenProfile(
@@ -408,15 +408,12 @@ open class PersonalizationClient {
408408 return body
409409 }
410410
411- // Get the user profile built from Personalization strategy. The profile is structured by facet name used in the
412- // strategy. Each facet value is mapped to its score. Each score represents the user affinity for a specific facet
413- // value given the userToken past events and the Personalization strategy defined. Scores are bounded to 20. The
414- // last
415- // processed event timestamp is provided using the ISO 8601 format for debugging purposes.
411+ // Retrieves a user profile and their affinities for different facets.
416412 // Required API Key ACLs:
417413 // - recommendation
418414 //
419- // - parameter userToken: (path) userToken representing the user for which to fetch the Personalization profile.
415+ // - parameter userToken: (path) Unique identifier representing a user for which to fetch the personalization
416+ // profile.
420417 // - returns: RequestBuilder<GetUserTokenResponse>
421418
422419 open func getUserTokenProfileWithHTTPInfo(
@@ -471,7 +468,7 @@ open class PersonalizationClient {
471468 return body
472469 }
473470
474- // A strategy defines the events and facets that impact user profiles and personalized search results .
471+ // Creates a new personalization strategy .
475472 // Required API Key ACLs:
476473 // - recommendation
477474 //
0 commit comments