cloudflare-rs 0.7.0

Rust library bindings for Cloudflares v4 API
Documentation
use surf::http::Method;

use super::Account;

use crate::framework::endpoint::Endpoint;
use crate::framework::OrderDirection;

/// List Accounts
/// List all accounts you have ownership or verified access to
/// https://api.cloudflare.com/#accounts-list-accounts
#[derive(Debug)]
pub struct ListAccounts {
    pub params: Option<ListAccountsParams>,
}

impl Endpoint<Vec<Account>, ListAccountsParams> for ListAccounts {
    fn method(&self) -> Method {
        Method::Get
    }
    fn path(&self) -> String {
        "accounts".to_string()
    }
    fn query(&self) -> Option<ListAccountsParams> {
        self.params.clone()
    }
}

#[serde_with::skip_serializing_none]
#[derive(Serialize, Clone, Debug, Default)]
pub struct ListAccountsParams {
    pub page: Option<u32>,
    pub per_page: Option<u32>,
    pub direction: Option<OrderDirection>,
}