use near_sdk::{json_types::U128, near}; #[near(serializers=[json, borsh])] #[derive(Default, Clone)] pub struct ChangeControl { /// Time from proposal -> automatic activation (no separate apply step). pub activation_delay_nanosec: U128, /// After update is activated, the period needed until next update is possible pub min_interval_between_updates_nanosec: U128, }