pub struct GoogleCloudDialogflowV2Participant {
pub documents_metadata_filters: Option<HashMap<String, String>>,
pub name: Option<String>,
pub obfuscated_external_user_id: Option<String>,
pub role: Option<String>,
pub sip_recording_media_label: Option<String>,
}
Expand description
Represents a conversation participant (human agent, virtual agent, end-user).
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- conversations participants create projects (request|response)
- conversations participants get projects (response)
- conversations participants patch projects (request|response)
- locations conversations participants create projects (request|response)
- locations conversations participants get projects (response)
- locations conversations participants patch projects (request|response)
Fields§
§documents_metadata_filters: Option<HashMap<String, String>>
Optional. Key-value filters on the metadata of documents returned by article suggestion. If specified, article suggestion only returns suggested documents that match all filters in their Document.metadata. Multiple values for a metadata key should be concatenated by comma. For example, filters to match all documents that have ‘US’ or ‘CA’ in their market metadata values and ‘agent’ in their user metadata values will be documents_metadata_filters { key: "market" value: "US,CA" } documents_metadata_filters { key: "user" value: "agent" }
name: Option<String>
Optional. The unique identifier of this participant. Format: projects//locations//conversations//participants/
.
obfuscated_external_user_id: Option<String>
Optional. Obfuscated user id that should be associated with the created participant. You can specify a user id as follows: 1. If you set this field in CreateParticipantRequest or UpdateParticipantRequest, Dialogflow adds the obfuscated user id with the participant. 2. If you set this field in AnalyzeContent or StreamingAnalyzeContent, Dialogflow will update Participant.obfuscated_external_user_id. Dialogflow returns an error if you try to add a user id for a non-END_USER participant. Dialogflow uses this user id for billing and measurement purposes. For example, Dialogflow determines whether a user in one conversation returned in a later conversation. Note: * Please never pass raw user ids to Dialogflow. Always obfuscate your user id first. * Dialogflow only accepts a UTF-8 encoded string, e.g., a hex digest of a hash function like SHA-512. * The length of the user id must be <= 256 characters.
role: Option<String>
Immutable. The role this participant plays in the conversation. This field must be set during participant creation and is then immutable.
sip_recording_media_label: Option<String>
Optional. Label applied to streams representing this participant in SIPREC XML metadata and SDP. This is used to assign transcriptions from that media stream to this participant. This field can be updated.
Trait Implementations§
Source§impl Clone for GoogleCloudDialogflowV2Participant
impl Clone for GoogleCloudDialogflowV2Participant
Source§fn clone(&self) -> GoogleCloudDialogflowV2Participant
fn clone(&self) -> GoogleCloudDialogflowV2Participant
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDialogflowV2Participant
impl Default for GoogleCloudDialogflowV2Participant
Source§fn default() -> GoogleCloudDialogflowV2Participant
fn default() -> GoogleCloudDialogflowV2Participant
Source§impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2Participant
impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2Participant
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for GoogleCloudDialogflowV2Participant
impl ResponseResult for GoogleCloudDialogflowV2Participant
Auto Trait Implementations§
impl Freeze for GoogleCloudDialogflowV2Participant
impl RefUnwindSafe for GoogleCloudDialogflowV2Participant
impl Send for GoogleCloudDialogflowV2Participant
impl Sync for GoogleCloudDialogflowV2Participant
impl Unpin for GoogleCloudDialogflowV2Participant
impl UnwindSafe for GoogleCloudDialogflowV2Participant
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more