pub struct Account {
pub id: Option<i32>,
pub name: Option<String>,
pub created_timestamp: Option<String>,
pub updated_timestamp: Option<String>,
pub marketplace_status: Option<String>,
pub key: Option<AccountApiKeyInfo>,
}Expand description
Account information
Fields§
§id: Option<i32>Account ID
name: Option<String>Account name
created_timestamp: Option<String>Timestamp when the account was created
updated_timestamp: Option<String>Timestamp when the account was last updated
marketplace_status: Option<String>Marketplace status (e.g., “active”, “deleted”)
key: Option<AccountApiKeyInfo>API key information used for this request
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