helium_api/models/transactions/
transfer_hotspot_v1.rs

1use crate::models::Hnt;
2use serde::{Deserialize, Serialize};
3
4#[derive(Clone, Serialize, Deserialize, Debug)]
5pub struct TransferHotspotV1 {
6    pub hash: String,
7    pub fee: u64,
8    pub buyer: String,
9    pub seller: String,
10    pub gateway: String,
11    pub buyer_nonce: u64,
12    pub amount_to_seller: Hnt,
13}