rosetta-types 0.4.0

Rosetta API request and response structs.
Documentation
/*
 * Rosetta
 *
 * Build Once. Integrate Your Blockchain Everywhere.
 *
 * The version of the OpenAPI document: 1.4.13
 *
 * Generated by: https://openapi-generator.tech
 */

/// MetadataRequest : A MetadataRequest is utilized in any request where the only argument is optional metadata.

#[derive(Clone, Debug, PartialEq, Eq, Default, Serialize, Deserialize)]
pub struct MetadataRequest {
    #[serde(rename = "metadata", skip_serializing_if = "Option::is_none")]
    pub metadata: Option<serde_json::Value>,
}

impl MetadataRequest {
    /// A MetadataRequest is utilized in any request where the only argument is optional metadata.
    pub fn new() -> MetadataRequest {
        MetadataRequest { metadata: None }
    }
}