pub struct GoogleCloudDialogflowCxV3TransitionRouteGroup {
pub display_name: Option<String>,
pub name: Option<String>,
pub transition_routes: Option<Vec<GoogleCloudDialogflowCxV3TransitionRoute>>,
}
Expand description
A TransitionRouteGroup represents a group of TransitionRoutes
to be used by a Page.
§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).
- locations agents flows transition route groups create projects (request|response)
- locations agents flows transition route groups get projects (response)
- locations agents flows transition route groups patch projects (request|response)
- locations agents transition route groups create projects (request|response)
- locations agents transition route groups get projects (response)
- locations agents transition route groups patch projects (request|response)
Fields§
§display_name: Option<String>
Required. The human-readable name of the transition route group, unique within the flow. The display name can be no longer than 30 characters.
name: Option<String>
The unique identifier of the transition route group. TransitionRouteGroups.CreateTransitionRouteGroup populates the name automatically. Format: projects//locations//agents//flows//transitionRouteGroups/
.
transition_routes: Option<Vec<GoogleCloudDialogflowCxV3TransitionRoute>>
Transition routes associated with the TransitionRouteGroup.
Trait Implementations§
Source§impl Clone for GoogleCloudDialogflowCxV3TransitionRouteGroup
impl Clone for GoogleCloudDialogflowCxV3TransitionRouteGroup
Source§fn clone(&self) -> GoogleCloudDialogflowCxV3TransitionRouteGroup
fn clone(&self) -> GoogleCloudDialogflowCxV3TransitionRouteGroup
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for GoogleCloudDialogflowCxV3TransitionRouteGroup
impl Default for GoogleCloudDialogflowCxV3TransitionRouteGroup
Source§fn default() -> GoogleCloudDialogflowCxV3TransitionRouteGroup
fn default() -> GoogleCloudDialogflowCxV3TransitionRouteGroup
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudDialogflowCxV3TransitionRouteGroup
impl<'de> Deserialize<'de> for GoogleCloudDialogflowCxV3TransitionRouteGroup
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>,
Deserialize this value from the given Serde deserializer. Read more
impl RequestValue for GoogleCloudDialogflowCxV3TransitionRouteGroup
impl ResponseResult for GoogleCloudDialogflowCxV3TransitionRouteGroup
Auto Trait Implementations§
impl Freeze for GoogleCloudDialogflowCxV3TransitionRouteGroup
impl RefUnwindSafe for GoogleCloudDialogflowCxV3TransitionRouteGroup
impl Send for GoogleCloudDialogflowCxV3TransitionRouteGroup
impl Sync for GoogleCloudDialogflowCxV3TransitionRouteGroup
impl Unpin for GoogleCloudDialogflowCxV3TransitionRouteGroup
impl UnwindSafe for GoogleCloudDialogflowCxV3TransitionRouteGroup
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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