pub struct AdminApiKeyOwner {
pub created_at: Option<i64>,
pub id: Option<String>,
pub name: Option<String>,
pub object: Option<String>,
pub role: Option<String>,
pub _type: Option<String>,
}
Fields§
§created_at: Option<i64>
The Unix timestamp (in seconds) of when the user was created
id: Option<String>
The identifier, which can be referenced in API endpoints
name: Option<String>
The name of the user
object: Option<String>
The object type, which is always organization.user
role: Option<String>
Always owner
_type: Option<String>
Always user
Trait Implementations§
Source§impl Debug for AdminApiKeyOwner
impl Debug for AdminApiKeyOwner
Source§impl<'de> Deserialize<'de> for AdminApiKeyOwner
impl<'de> Deserialize<'de> for AdminApiKeyOwner
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 AdminApiKeyOwner
impl RefUnwindSafe for AdminApiKeyOwner
impl Send for AdminApiKeyOwner
impl Sync for AdminApiKeyOwner
impl Unpin for AdminApiKeyOwner
impl UnwindSafe for AdminApiKeyOwner
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