helium_api/models/transactions/
unstake_validator_v1.rs

1use crate::models::Hnt;
2use serde::{Deserialize, Serialize};
3
4#[derive(Clone, Serialize, Deserialize, Debug)]
5pub struct UnstakeValidatorV1 {
6    pub address: String,
7    pub owner: String,
8    pub owner_signature: String,
9    pub fee: u64,
10    pub stake_amount: Hnt,
11    pub stake_release_height: u64,
12    pub hash: String,
13}