Skip to content

Commit

Permalink
Digital Twin Graph
Browse files Browse the repository at this point in the history
  • Loading branch information
ashbeitz committed May 9, 2024
1 parent b116968 commit ca47575
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core/module/digital_twin_graph/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ use serde_derive::{Deserialize, Serialize};
pub struct TargetedPayload {
/// The instance id for the target entity.
pub instance_id: String,
/// The path within the target entity to member that we are targeting.
/// The path within the target entity to the specific member that we are targeting.
/// It will be empty when we want to target the entire entity.
pub member_path: String,
/// The operation to be performed on the target entity's member.
pub operation: String,
/// The operation's payload. It will be empty when the operation does not require a payload.
/// The operation's payload.
/// It will be empty when the operation does not require a payload.
pub payload: String,
}

Expand Down

0 comments on commit ca47575

Please sign in to comment.