algonaut_indexer 0.5.0

Algorand ledger analytics API.
Documentation
/*
 * Indexer
 *
 * Algorand ledger analytics API.
 *
 * The version of the OpenAPI document: 2.0
 *
 * Generated by: https://openapi-generator.tech
 */

#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct SearchForAccounts200Response {
    #[serde(rename = "accounts")]
    pub accounts: Vec<crate::models::Account>,
    /// Round at which the results were computed.
    #[serde(rename = "current-round")]
    pub current_round: u64,
    /// Used for pagination, when making another request provide this token with the next parameter.
    #[serde(rename = "next-token", skip_serializing_if = "Option::is_none")]
    pub next_token: Option<String>,
}

impl SearchForAccounts200Response {
    pub fn new(
        accounts: Vec<crate::models::Account>,
        current_round: u64,
    ) -> SearchForAccounts200Response {
        SearchForAccounts200Response {
            accounts,
            current_round,
            next_token: None,
        }
    }
}