get method
Gets a conversation.
Request parameters:
name
- Required. The name of the conversation to get.
Value must have pattern
^projects/\[^/\]+/locations/\[^/\]+/conversations/\[^/\]+$
.
view
- The level of details of the conversation. Default is FULL
.
Possible string values are:
- "CONVERSATION_VIEW_UNSPECIFIED" : The conversation view is not
specified. * Defaults to
FULL
inGetConversationRequest
. * Defaults toBASIC
inListConversationsRequest
. - "FULL" : Populates all fields in the conversation.
- "BASIC" : Populates all fields in the conversation except the transcript.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleCloudContactcenterinsightsV1Conversation.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<GoogleCloudContactcenterinsightsV1Conversation> get(
core.String name, {
core.String? view,
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if (view != null) 'view': [view],
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v1/' + core.Uri.encodeFull('$name');
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return GoogleCloudContactcenterinsightsV1Conversation.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}