Struct gapi_grpc::google::actions::sdk::v2::SendInteractionRequest[][src]

pub struct SendInteractionRequest {
    pub project: String,
    pub input: Option<UserInput>,
    pub device_properties: Option<DeviceProperties>,
    pub conversation_token: String,
}

Request for playing a round of the conversation.

Fields

project: String

Required. The project being tested, indicated by the Project ID. Format: projects/{project}

input: Option<UserInput>

Required. Input provided by the user.

device_properties: Option<DeviceProperties>

Required. Properties of the device used for interacting with the Action.

conversation_token: String

Opaque token that must be passed as received from SendInteractionResponse on the previous interaction. This can be left unset in order to start a new conversation, either as the first interaction of a testing session or to abandon a previous conversation and start a new one.

Trait Implementations

impl Clone for SendInteractionRequest[src]

impl Debug for SendInteractionRequest[src]

impl Default for SendInteractionRequest[src]

impl Message for SendInteractionRequest[src]

impl PartialEq<SendInteractionRequest> for SendInteractionRequest[src]

impl StructuralPartialEq for SendInteractionRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for SendInteractionRequest

impl Send for SendInteractionRequest

impl Sync for SendInteractionRequest

impl Unpin for SendInteractionRequest

impl UnwindSafe for SendInteractionRequest

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]