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