whatsapp_cloud_api/models/
media_response.rs1use serde::{Deserialize, Serialize};
2
3#[derive(Clone, Debug, Serialize, Deserialize)]
4pub struct MediaResponse {
5 pub messaging_product: String,
6 pub url: String,
7 pub mime_type: String,
8 pub sha256: String,
9 pub file_size: i32,
10 pub id: String,
11}