/*
* 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};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct DomainCreateDataPolicy200Response {
/// An identifier for a policy
#[serde(rename = "policyID")]
pub policy_id: String,
}
impl DomainCreateDataPolicy200Response {
pub fn new(policy_id: String) -> DomainCreateDataPolicy200Response {
DomainCreateDataPolicy200Response {
policy_id,
}
}
}