pub struct OAuthConfiguration {
pub client_id: Option<String>,
pub client_secret: Option<String>,
pub created_by: Option<IdentityRef>,
pub created_on: Option<OffsetDateTime>,
pub endpoint_type: Option<String>,
pub id: Option<String>,
pub modified_by: Option<IdentityRef>,
pub modified_on: Option<OffsetDateTime>,
pub name: Option<String>,
pub url: Option<String>,
}Fields§
§client_id: Option<String>Gets or sets the ClientId
client_secret: Option<String>Gets or sets the ClientSecret
created_by: Option<IdentityRef>§created_on: Option<OffsetDateTime>Gets or sets the time when config was created.
endpoint_type: Option<String>Gets or sets the type of the endpoint.
id: Option<String>Gets or sets the unique identifier of this field
modified_by: Option<IdentityRef>§modified_on: Option<OffsetDateTime>Gets or sets the time when variable group was modified
name: Option<String>Gets or sets the name
url: Option<String>Gets or sets the Url
Implementations§
Trait Implementations§
Source§impl Clone for OAuthConfiguration
impl Clone for OAuthConfiguration
Source§fn clone(&self) -> OAuthConfiguration
fn clone(&self) -> OAuthConfiguration
Returns a copy 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 Debug for OAuthConfiguration
impl Debug for OAuthConfiguration
Source§impl Default for OAuthConfiguration
impl Default for OAuthConfiguration
Source§fn default() -> OAuthConfiguration
fn default() -> OAuthConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OAuthConfiguration
impl<'de> Deserialize<'de> for OAuthConfiguration
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 OAuthConfiguration
impl PartialEq for OAuthConfiguration
Source§impl Serialize for OAuthConfiguration
impl Serialize for OAuthConfiguration
impl StructuralPartialEq for OAuthConfiguration
Auto Trait Implementations§
impl Freeze for OAuthConfiguration
impl RefUnwindSafe for OAuthConfiguration
impl Send for OAuthConfiguration
impl Sync for OAuthConfiguration
impl Unpin for OAuthConfiguration
impl UnwindSafe for OAuthConfiguration
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