parco_lob/create_postcard/
response.rs

1use serde::Deserialize;
2
3/// The response from lob's api for creating a postcard
4#[derive(Clone, Debug, Deserialize)]
5pub struct CreatePostcardResponse {
6    /// the id of the postcard
7    pub id: Box<str>,
8    /// the send date
9    pub send_date: Box<str>,
10}