#[non_exhaustive]pub struct ZendeskConnectorProfileCredentials {
pub client_id: Option<String>,
pub client_secret: Option<String>,
pub access_token: Option<String>,
pub o_auth_request: Option<ConnectorOAuthRequest>,
}
Expand description
The connector-specific profile credentials required when using Zendesk.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.client_id: Option<String>
The identifier for the desired client.
client_secret: Option<String>
The client secret used by the OAuth client to authenticate to the authorization server.
access_token: Option<String>
The credentials used to access protected Zendesk resources.
o_auth_request: Option<ConnectorOAuthRequest>
The OAuth requirement needed to request security tokens from the connector endpoint.
Implementations
The client secret used by the OAuth client to authenticate to the authorization server.
The credentials used to access protected Zendesk resources.
The OAuth requirement needed to request security tokens from the connector endpoint.
Creates a new builder-style object to manufacture ZendeskConnectorProfileCredentials
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for ZendeskConnectorProfileCredentials
impl Sync for ZendeskConnectorProfileCredentials
impl Unpin for ZendeskConnectorProfileCredentials
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more