pub struct GoogleCloudDialogflowV2BatchUpdateIntentsRequest {
pub intent_batch_inline: Option<GoogleCloudDialogflowV2IntentBatch>,
pub intent_batch_uri: Option<String>,
pub intent_view: Option<String>,
pub language_code: Option<String>,
pub update_mask: Option<FieldMask>,
}
Expand description
There is no detailed description.
§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).
- agent intents batch update projects (request)
- locations agent intents batch update projects (request)
Fields§
§intent_batch_inline: Option<GoogleCloudDialogflowV2IntentBatch>
The collection of intents to update or create.
intent_batch_uri: Option<String>
The URI to a Google Cloud Storage file containing intents to update or create. The file format can either be a serialized proto (of IntentBatch type) or JSON object. Note: The URI must start with “gs://”.
intent_view: Option<String>
Optional. The resource view to apply to the returned intent.
language_code: Option<String>
Optional. The language used to access language-specific data. If not specified, the agent’s default language is used. For more information, see Multilingual intent and entity data.
update_mask: Option<FieldMask>
Optional. The mask to control which fields get updated.
Trait Implementations§
Source§impl Clone for GoogleCloudDialogflowV2BatchUpdateIntentsRequest
impl Clone for GoogleCloudDialogflowV2BatchUpdateIntentsRequest
Source§fn clone(&self) -> GoogleCloudDialogflowV2BatchUpdateIntentsRequest
fn clone(&self) -> GoogleCloudDialogflowV2BatchUpdateIntentsRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDialogflowV2BatchUpdateIntentsRequest
impl Default for GoogleCloudDialogflowV2BatchUpdateIntentsRequest
Source§fn default() -> GoogleCloudDialogflowV2BatchUpdateIntentsRequest
fn default() -> GoogleCloudDialogflowV2BatchUpdateIntentsRequest
Source§impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2BatchUpdateIntentsRequest
impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2BatchUpdateIntentsRequest
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 GoogleCloudDialogflowV2BatchUpdateIntentsRequest
Auto Trait Implementations§
impl Freeze for GoogleCloudDialogflowV2BatchUpdateIntentsRequest
impl RefUnwindSafe for GoogleCloudDialogflowV2BatchUpdateIntentsRequest
impl Send for GoogleCloudDialogflowV2BatchUpdateIntentsRequest
impl Sync for GoogleCloudDialogflowV2BatchUpdateIntentsRequest
impl Unpin for GoogleCloudDialogflowV2BatchUpdateIntentsRequest
impl UnwindSafe for GoogleCloudDialogflowV2BatchUpdateIntentsRequest
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