cloudflare 0.14.0

Rust library for the Cloudflare v4 API
Documentation
use super::Account;

use crate::framework::endpoint::{serialize_query, EndpointSpec, Method};
use crate::framework::OrderDirection;

use crate::framework::response::ApiSuccess;
use serde::Serialize;

/// 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 EndpointSpec for ListAccounts {
    type JsonResponse = Vec<Account>;
    type ResponseType = ApiSuccess<Self::JsonResponse>;

    fn method(&self) -> Method {
        Method::GET
    }
    fn path(&self) -> String {
        "accounts".to_string()
    }
    #[inline]
    fn query(&self) -> Option<String> {
        serialize_query(&self.params)
    }
}

#[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>,
}