use openlark_core::api::{ApiResponseTrait, ResponseFormat};
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DocsContent {
pub document_token: String,
pub title: String,
pub content: String,
pub document_type: String,
pub create_time: String,
pub update_time: String,
pub creator_id: String,
pub url: String,
}
impl ApiResponseTrait for DocsContent {
fn data_format() -> ResponseFormat {
ResponseFormat::Data
}
}