pub struct Account {Show 21 fields
pub id: String,
pub name: String,
pub mbn: String,
pub domain: String,
pub created: Option<String>,
pub organisation: RecordReference,
pub ddis: Vec<DDI>,
pub trunks: Vec<Trunk>,
pub hooks: Vec<Hook>,
pub devices: Vec<Device>,
pub settings: Vec<Setting>,
pub assets: Vec<Asset>,
pub address: Address,
pub teams: TeamsAccount,
pub environment: Environment,
pub spend_cap: SpendCap,
pub concurrency: Concurrency,
pub class_of_service: ClassOfService,
pub api_keys: APIKeys,
pub cluster_settings: Cluster,
pub domain_settings: Domain,
}
Fields§
§id: String
§name: String
§mbn: String
§domain: String
§created: Option<String>
§organisation: RecordReference
§ddis: Vec<DDI>
§trunks: Vec<Trunk>
§hooks: Vec<Hook>
§devices: Vec<Device>
§settings: Vec<Setting>
§assets: Vec<Asset>
§address: Address
§teams: TeamsAccount
§environment: Environment
§spend_cap: SpendCap
§concurrency: Concurrency
§class_of_service: ClassOfService
§api_keys: APIKeys
§cluster_settings: Cluster
§domain_settings: Domain
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Account
impl<'de> Deserialize<'de> for Account
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Account
impl RefUnwindSafe for Account
impl Send for Account
impl Sync for Account
impl Unpin for Account
impl UnwindSafe for Account
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more