| /* | |
| * | |
| * | |
| * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | |
| * | |
| * The version of the OpenAPI document: | |
| * | |
| * Generated by: https://openapi-generator.tech | |
| */ | |
| use crate::models; | |
| use serde::{Deserialize, Serialize}; | |
| pub struct ApplyResult { | |
| pub epoch: i64, | |
| } | |
| impl ApplyResult { | |
| pub fn new(epoch: i64) -> ApplyResult { | |
| ApplyResult { epoch } | |
| } | |
| } | |