1 2//! `ApplyUpdate` request DTO. 3 4#[derive(Debug, Clone)] 5pub struct Struct { 6 pub request_id:String, 7 8 pub update_id:String, 9 10 pub update_path:String, 11}