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