Struct google_api_proto::google::home::graph::v1::ReportStateAndNotificationRequest
source · 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>,
}
Expand description
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
Deprecated.
payload: Option<StateAndNotificationPayload>
Required. State of devices to update and notification metadata for devices.
Trait Implementations§
source§impl Clone for ReportStateAndNotificationRequest
impl Clone for ReportStateAndNotificationRequest
source§fn clone(&self) -> ReportStateAndNotificationRequest
fn clone(&self) -> ReportStateAndNotificationRequest
Returns a copy 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 Message for ReportStateAndNotificationRequest
impl Message for ReportStateAndNotificationRequest
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
Encodes the message to a newly allocated buffer.
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
.source§impl PartialEq for ReportStateAndNotificationRequest
impl PartialEq for ReportStateAndNotificationRequest
source§fn eq(&self, other: &ReportStateAndNotificationRequest) -> bool
fn eq(&self, other: &ReportStateAndNotificationRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ReportStateAndNotificationRequest
Auto Trait Implementations§
impl Freeze for ReportStateAndNotificationRequest
impl RefUnwindSafe for ReportStateAndNotificationRequest
impl Send for ReportStateAndNotificationRequest
impl Sync for ReportStateAndNotificationRequest
impl Unpin for ReportStateAndNotificationRequest
impl UnwindSafe for ReportStateAndNotificationRequest
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request