use serde::{Deserialize, Serialize};
#[derive(Debug, Deserialize)]
pub struct ApiErrorResponse {
pub code: String,
pub message: String,
pub object: String,
pub status: u32,
}
#[derive(Debug, Deserialize, Serialize)]
pub struct Pagination {
pub has_more: bool,
pub limit: u32,
pub offset: u32,
pub total: u32,
}