File size: 1,134 Bytes
e5034c3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(transparent)]
pub struct AuthProviderId(String);
impl AuthProviderId {
pub fn new(id: impl ToString) -> Self {
Self(id.to_string())
}
pub fn into_string(self) -> String {
self.0
}
}
#[derive(Debug, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct User {
pub auth_provider_id: AuthProviderId,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Plan {
pub r#type: String,
}
impl Plan {
pub fn is_upgradeable(&self) -> bool {
matches!(self.r#type.to_lowercase().as_str(), "free" | "pro")
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct UsageInfo {
pub current: u32,
pub limit: u32,
pub remaining: u32,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub reset_in: Option<u64>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct UserUsage {
pub plan: Plan,
pub usage: UsageInfo,
}
|