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