Struct gapi_grpc::google::home::graph::v1::ReportStateAndNotificationRequest[][src]

pub struct ReportStateAndNotificationRequest {
    pub request_id: String,
    pub event_id: String,
    pub agent_user_id: String,
    pub follow_up_token: String,
    pub payload: Option<StateAndNotificationPayload>,
}

Request type for the ReportStateAndNotification call. It may include states, notifications, or both. States and notifications are defined per device_id (for example, “123” and “456” in the following example).

Example

{
  "requestId": "ff36a3cc-ec34-11e6-b1a0-64510650abcf",
  "agentUserId": "1234",
  "payload": {
    "devices": {
      "states": {
        "123": {
          "on": true
        },
        "456": {
          "on": true,
          "brightness": 10
        }
      },
    }
  }
}

Fields

request_id: String

Request ID used for debugging.

event_id: String

Unique identifier per event (for example, a doorbell press).

agent_user_id: String

Required. Third-party user ID.

follow_up_token: String

Deprecated. (– Token to maintain state in the follow up notification response. See the notifications guide at https://developers.google.com/assistant/smarthome/develop/notifications for details on implementing follow up notifications –)

payload: Option<StateAndNotificationPayload>

Required. State of devices to update and notification metadata for devices.

Trait Implementations

impl Clone for ReportStateAndNotificationRequest[src]

impl Debug for ReportStateAndNotificationRequest[src]

impl Default for ReportStateAndNotificationRequest[src]

impl Message for ReportStateAndNotificationRequest[src]

impl PartialEq<ReportStateAndNotificationRequest> for ReportStateAndNotificationRequest[src]

impl StructuralPartialEq for ReportStateAndNotificationRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ReportStateAndNotificationRequest

impl Send for ReportStateAndNotificationRequest

impl Sync for ReportStateAndNotificationRequest

impl Unpin for ReportStateAndNotificationRequest

impl UnwindSafe for ReportStateAndNotificationRequest

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]