@@ -432,10 +432,10 @@ message ListConversationsRequest {
432432 }
433433 ];
434434
435- // The maximum number of conversations to return in the response. If this
436- // value is zero, the service will select a default size. A call might return
437- // fewer objects than requested. A non-empty `next_page_token` in the response
438- // indicates that more data is available .
435+ // The maximum number of conversations to return in the response. A valid page
436+ // size ranges from 0 to 1,000 inclusive. If the page size is zero or
437+ // unspecified, a default page size of 100 will be chosen. Note that a call
438+ // might return fewer results than the requested page size .
439439 int32 page_size = 2 ;
440440
441441 // The value returned by the last `ListConversationsResponse`. This value
@@ -456,8 +456,9 @@ message ListConversationsResponse {
456456 // The conversations that match the request.
457457 repeated Conversation conversations = 1 ;
458458
459- // A token, which can be sent as `page_token` to retrieve the next page.
460- // If this field is omitted, there are no subsequent pages.
459+ // A token which can be sent as `page_token` to retrieve the next page. If
460+ // this field is set, it means there is another page available. If it is not
461+ // set, it means no other pages are available.
461462 string next_page_token = 2 ;
462463}
463464
@@ -922,7 +923,7 @@ message GetSettingsRequest {
922923
923924// The request to update project-level settings.
924925message UpdateSettingsRequest {
925- // Required. The new values for the conversation .
926+ // Required. The new settings values .
926927 Settings settings = 1 [(google.api.field_behavior ) = REQUIRED ];
927928
928929 // Required. The list of fields to be updated.
0 commit comments