/*
* Ark API
*
* Combined Ark Service, Indexer, Admin, Signer Manager, and Wallet API
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::Deserialize;
use serde::Serialize;
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct DeleteIntentRequest {
/// an intent proof that includes any of the inputs of the intent to be deleted to prove the
/// ownership of that intent.
#[serde(rename = "intent", skip_serializing_if = "Option::is_none")]
pub intent: Option<models::Intent>,
}
impl DeleteIntentRequest {
pub fn new() -> DeleteIntentRequest {
DeleteIntentRequest { intent: None }
}
}