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