helium_api/models/transactions/
consensus_group_v1.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Clone, Serialize, Deserialize, Debug)]
4pub struct ConsensusGroupV1 {
5    pub delay: u64,
6    pub hash: String,
7    pub height: u64,
8    pub members: Vec<String>,
9    pub proof: String,
10}