pinterest_api/parameter/
carousel_slot.rs

1
2
3
4
5
6
7
8
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CarouselSlot {
    pub title: String,
    pub description: String,
    pub link: String,
}