alpaca-authx-client-rs 0.1.0

Unofficial, use at own risk. Generated from alpacas open api specs using openapi cli
Documentation
/*
 * Authentication API
 *
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.0.0
 * 
 * Generated by: https://openapi-generator.tech
 */

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

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ErrorResponse {
    #[serde(rename = "error")]
    pub error: models::ErrorCode,
    /// List of invalid request fields, if any
    #[serde(rename = "fields", skip_serializing_if = "Option::is_none")]
    pub fields: Option<Vec<models::ErrorResponseField>>,
}

impl ErrorResponse {
    pub fn new(error: models::ErrorCode) -> ErrorResponse {
        ErrorResponse {
            error,
            fields: None,
        }
    }
}