Skip to main content

ark_rest/models/
subscribe_for_scripts_response.rs

1/*
2 * Ark API
3 *
4 * Combined Ark Service, Indexer, Admin, Signer Manager, and Wallet API
5 *
6 * The version of the OpenAPI document: 1.0.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::Deserialize;
13use serde::Serialize;
14
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct SubscribeForScriptsResponse {
17    #[serde(rename = "subscriptionId", skip_serializing_if = "Option::is_none")]
18    pub subscription_id: Option<String>,
19}
20
21impl SubscribeForScriptsResponse {
22    pub fn new() -> SubscribeForScriptsResponse {
23        SubscribeForScriptsResponse {
24            subscription_id: None,
25        }
26    }
27}