Merge pull request #159 from jeremy-prater/prater/fix_failederror_struct

- Update FailedError struct to correct api schema
This commit is contained in:
Dongri Jin
2025-04-24 08:34:24 +09:00
committed by GitHub

View File

@ -234,8 +234,9 @@ pub enum ResponseStatusDetail {
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct FailedError {
pub code: String,
pub message: String,
pub code: Option<String>,
pub message: Option<String>,
pub r#type: Option<String>,
}
#[derive(Debug, Serialize, Deserialize, Clone)]