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};

/// ResourceExhaustedError : Returned when the server is unable to process the request due to resource exhaustion or rate limiting 
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ResourceExhaustedError {
    /// which resource type is exhausted
    #[serde(rename = "resourceType")]
    pub resource_type: String,
    /// identifier for the resource that is exhausted
    #[serde(rename = "identifier")]
    pub identifier: String,
    /// a free form message describing the error
    #[serde(rename = "message")]
    pub message: String,
}

impl ResourceExhaustedError {
    /// Returned when the server is unable to process the request due to resource exhaustion or rate limiting 
    pub fn new(resource_type: String, identifier: String, message: String) -> ResourceExhaustedError {
        ResourceExhaustedError {
            resource_type,
            identifier,
            message,
        }
    }
}