lattice_sdk/api/types/owner.rs
1pub use crate::prelude::*;
2
3/// Owner designates the entity responsible for writes of Task data.
4#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, Hash)]
5pub struct Owner {
6 /// Entity ID of the owner.
7 #[serde(rename = "entityId")]
8 #[serde(skip_serializing_if = "Option::is_none")]
9 pub entity_id: Option<String>,
10}