use serde::{Deserialize, Serialize};
#[derive(Deserialize, Debug)]
#[serde(rename_all = "snake_case")]
pub struct PODRetrievalResponse {
pub document: Option<String>,
}
#[derive(Serialize, Debug)]
pub struct PODRetrievalRequest {
pub waypoint: String,
pub type_of_waypoint: String,
}