helium_api/models/transactions/assert_location_v2.rs
1use crate::models::Hnt;
2use serde::{Deserialize, Serialize};
3
4#[derive(Clone, Serialize, Deserialize, Debug)]
5pub struct AssertLocationV2 {
6 pub hash: String,
7 pub fee: u64,
8 pub gain: i64,
9 pub nonce: u64,
10 pub owner: String,
11 pub payer: Option<String>,
12 pub gateway: String,
13 pub location: String,
14 pub elevation: i64,
15 pub staking_fee: Hnt,
16}