use serde::{Deserialize, Serialize};
#[derive(Debug, Serialize, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub struct Account {
pub account_id: String,
pub account_name: String,
pub account_uri: String,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct AccountsResponse {
pub count: i32,
pub value: Vec<Account>,
}