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

/// ResourceNotFoundError : Returned when interacting with a valid URL, but the request references an unknown resource 
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ResourceNotFoundError {
    /// which resource type cannot be found
    #[serde(rename = "resourceType")]
    pub resource_type: String,
    /// the identifier for the resource we cannot locate
    #[serde(rename = "identifier")]
    pub identifier: String,
    /// a free form message describing the error
    #[serde(rename = "message")]
    pub message: String,
}

impl ResourceNotFoundError {
    /// Returned when interacting with a valid URL, but the request references an unknown resource 
    pub fn new(resource_type: String, identifier: String, message: String) -> ResourceNotFoundError {
        ResourceNotFoundError {
            resource_type,
            identifier,
            message,
        }
    }
}