1#![allow(non_snake_case)] 2 3//! `DownloadFile` request DTO. 4 5use std::collections::HashMap; 6 7#[derive(Debug, Clone)] 8pub struct Struct { 9 pub request_id:String, 10 pub url:String, 11 pub destination_path:String, 12 pub checksum:String, 13 pub headers:HashMap<String, String>, 14}