aptos_client_icp/models/move_value.rs
1/*
2 * Aptos Node API
3 *
4 * The Aptos Node API is a RESTful API for client applications to interact with the Aptos blockchain.
5 *
6 * The version of the OpenAPI document: 1.2.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// MoveValue : An enum of the possible Move value types
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct MoveValue {
17}
18
19impl MoveValue {
20 /// An enum of the possible Move value types
21 pub fn new() -> MoveValue {
22 MoveValue {
23 }
24 }
25}
26