Struct google_dialogflow3::api::GoogleCloudDialogflowCxV3Experiment[][src]

pub struct GoogleCloudDialogflowCxV3Experiment {
    pub create_time: Option<String>,
    pub definition: Option<GoogleCloudDialogflowCxV3ExperimentDefinition>,
    pub description: Option<String>,
    pub display_name: Option<String>,
    pub end_time: Option<String>,
    pub experiment_length: Option<String>,
    pub last_update_time: Option<String>,
    pub name: Option<String>,
    pub result: Option<GoogleCloudDialogflowCxV3ExperimentResult>,
    pub start_time: Option<String>,
    pub state: Option<String>,
    pub variants_history: Option<Vec<GoogleCloudDialogflowCxV3VariantsHistory>>,
}

Represents an experiment in an environment.

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

create_time: Option<String>

Creation time of this experiment.

definition: Option<GoogleCloudDialogflowCxV3ExperimentDefinition>

The definition of the experiment.

description: Option<String>

The human-readable description of the experiment.

display_name: Option<String>

Required. The human-readable name of the experiment (unique in an environment). Limit of 64 characters.

end_time: Option<String>

End time of this experiment.

experiment_length: Option<String>

Maximum number of days to run the experiment/rollout. If auto-rollout is not enabled, default value and maximum will be 30 days. If auto-rollout is enabled, default value and maximum will be 6 days.

last_update_time: Option<String>

Last update time of this experiment.

name: Option<String>

The name of the experiment. Format: projects//locations//agents//environments//experiments/..

result: Option<GoogleCloudDialogflowCxV3ExperimentResult>

Inference result of the experiment.

start_time: Option<String>

Start time of this experiment.

state: Option<String>

The current state of the experiment. Transition triggered by Expriments.StartExperiment: PENDING->RUNNING. Transition triggered by Expriments.CancelExperiment: PENDING->CANCELLED or RUNNING->CANCELLED.

variants_history: Option<Vec<GoogleCloudDialogflowCxV3VariantsHistory>>

The history of updates to the experiment variants.

Trait Implementations

impl Clone for GoogleCloudDialogflowCxV3Experiment[src]

impl Debug for GoogleCloudDialogflowCxV3Experiment[src]

impl Default for GoogleCloudDialogflowCxV3Experiment[src]

impl<'de> Deserialize<'de> for GoogleCloudDialogflowCxV3Experiment[src]

impl RequestValue for GoogleCloudDialogflowCxV3Experiment[src]

impl ResponseResult for GoogleCloudDialogflowCxV3Experiment[src]

impl Serialize for GoogleCloudDialogflowCxV3Experiment[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.