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 11 pub url:String, 12 13 pub destination_path:String, 14 15 pub checksum:String, 16 17 pub headers:HashMap<String, String>, 18}