pub struct AutomationTokenCreateResponseAllOf {
pub id: Option<Box<ReadOnlyId>>,
pub user_id: Option<Box<ReadOnlyUserId>>,
pub customer_id: Option<Box<ReadOnlyCustomerId>>,
pub created_at: Option<String>,
pub access_token: Option<String>,
pub tls_access: Option<bool>,
pub last_used_at: Option<String>,
pub user_agent: Option<String>,
}
Fields§
§id: Option<Box<ReadOnlyId>>
§user_id: Option<Box<ReadOnlyUserId>>
§customer_id: Option<Box<ReadOnlyCustomerId>>
§created_at: Option<String>
A UTC timestamp of when the token was created.
access_token: Option<String>
§tls_access: Option<bool>
Indicates whether TLS access is enabled for the token.
last_used_at: Option<String>
A UTC timestamp of when the token was last used.
user_agent: Option<String>
The User-Agent header of the client that last used the token.
Implementations§
Trait Implementations§
Source§impl Clone for AutomationTokenCreateResponseAllOf
impl Clone for AutomationTokenCreateResponseAllOf
Source§fn clone(&self) -> AutomationTokenCreateResponseAllOf
fn clone(&self) -> AutomationTokenCreateResponseAllOf
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for AutomationTokenCreateResponseAllOf
impl Default for AutomationTokenCreateResponseAllOf
Source§fn default() -> AutomationTokenCreateResponseAllOf
fn default() -> AutomationTokenCreateResponseAllOf
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutomationTokenCreateResponseAllOf
impl<'de> Deserialize<'de> for AutomationTokenCreateResponseAllOf
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
Source§impl PartialEq for AutomationTokenCreateResponseAllOf
impl PartialEq for AutomationTokenCreateResponseAllOf
Source§fn eq(&self, other: &AutomationTokenCreateResponseAllOf) -> bool
fn eq(&self, other: &AutomationTokenCreateResponseAllOf) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AutomationTokenCreateResponseAllOf
Auto Trait Implementations§
impl Freeze for AutomationTokenCreateResponseAllOf
impl RefUnwindSafe for AutomationTokenCreateResponseAllOf
impl Send for AutomationTokenCreateResponseAllOf
impl Sync for AutomationTokenCreateResponseAllOf
impl Unpin for AutomationTokenCreateResponseAllOf
impl UnwindSafe for AutomationTokenCreateResponseAllOf
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