pinterest_api/response/
board_section.rs

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

#[derive(Serialize, Deserialize, Debug, Clone, Default)]
pub struct BoardSection {
    id: String,
    name: String,
}