tiktok_api/objects/oauth/
error.rs1use serde::{Deserialize, Serialize};
2
3#[derive(Deserialize, Serialize, Debug, Clone)]
5pub struct Error {
6 pub captcha: Option<String>,
7 pub desc_url: Option<String>,
8 pub description: Option<String>,
9 pub error_code: isize,
10}