pub struct GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest {
pub entity_type_batch_inline: Option<GoogleCloudDialogflowV2EntityTypeBatch>,
pub entity_type_batch_uri: Option<String>,
pub language_code: Option<String>,
pub update_mask: Option<FieldMask>,
}
Expand description
The request message for EntityTypes.BatchUpdateEntityTypes.
§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).
Fields§
§entity_type_batch_inline: Option<GoogleCloudDialogflowV2EntityTypeBatch>
The collection of entity types to update or create.
entity_type_batch_uri: Option<String>
The URI to a Google Cloud Storage file containing entity types to update or create. The file format can either be a serialized proto (of EntityBatch type) or a JSON object. Note: The URI must start with “gs://”.
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 GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
impl Clone for GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
Source§fn clone(&self) -> GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
fn clone(&self) -> GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
impl Default for GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
Source§fn default() -> GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
fn default() -> GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
Source§impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
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 GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
Auto Trait Implementations§
impl Freeze for GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
impl RefUnwindSafe for GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
impl Send for GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
impl Sync for GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
impl Unpin for GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
impl UnwindSafe for GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest
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