hotdata 0.1.2

Powerful data platform API for datasets, queries, and analytics.
Documentation
/*
 * Hotdata API
 *
 * Powerful data platform API for datasets, queries, and analytics.
 *
 * The version of the OpenAPI document: 1.0.0
 * Contact: developers@hotdata.dev
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

/// ApiErrorResponse : Standard error response body
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ApiErrorResponse {
    #[serde(rename = "error")]
    pub error: Box<models::ApiErrorDetail>,
}

impl ApiErrorResponse {
    /// Standard error response body
    pub fn new(error: models::ApiErrorDetail) -> ApiErrorResponse {
        ApiErrorResponse {
            error: Box::new(error),
        }
    }
}