antimatter_api 2.0.13

Interact with the Antimatter Cloud API
Documentation
/*
 * Antimatter Public API
 *
 * Interact with the Antimatter Cloud API
 *
 * The version of the OpenAPI document: 2.0.13
 * Contact: support@antimatter.io
 * Generated by: https://openapi-generator.tech
 */

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

/// ForbiddenError : Returned when the server is forbidden from performing some action on the user's behalf by a third-party service (for example, AWS KMS). 
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ForbiddenError {
    /// a free form message describing the error
    #[serde(rename = "message")]
    pub message: String,
}

impl ForbiddenError {
    /// Returned when the server is forbidden from performing some action on the user's behalf by a third-party service (for example, AWS KMS). 
    pub fn new(message: String) -> ForbiddenError {
        ForbiddenError {
            message,
        }
    }
}