use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use super::command::JointState;
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SignedActuationCommand {
pub command_hash: String,
pub command_sequence: u64,
pub joint_states: Vec<JointState>,
pub timestamp: DateTime<Utc>,
pub actuation_signature: String,
pub signer_kid: String,
}