#[non_exhaustive]pub struct RegisterClientOutputBuilder { /* private fields */ }Expand description
A builder for RegisterClientOutput.
Implementations§
source§impl RegisterClientOutputBuilder
impl RegisterClientOutputBuilder
sourcepub fn client_id(self, input: impl Into<String>) -> Self
pub fn client_id(self, input: impl Into<String>) -> Self
The unique identifier string for each client. This client uses this identifier to get authenticated by the service in subsequent calls.
sourcepub fn set_client_id(self, input: Option<String>) -> Self
pub fn set_client_id(self, input: Option<String>) -> Self
The unique identifier string for each client. This client uses this identifier to get authenticated by the service in subsequent calls.
sourcepub fn get_client_id(&self) -> &Option<String>
pub fn get_client_id(&self) -> &Option<String>
The unique identifier string for each client. This client uses this identifier to get authenticated by the service in subsequent calls.
sourcepub fn client_secret(self, input: impl Into<String>) -> Self
pub fn client_secret(self, input: impl Into<String>) -> Self
A secret string generated for the client. The client will use this string to get authenticated by the service in subsequent calls.
sourcepub fn set_client_secret(self, input: Option<String>) -> Self
pub fn set_client_secret(self, input: Option<String>) -> Self
A secret string generated for the client. The client will use this string to get authenticated by the service in subsequent calls.
sourcepub fn get_client_secret(&self) -> &Option<String>
pub fn get_client_secret(&self) -> &Option<String>
A secret string generated for the client. The client will use this string to get authenticated by the service in subsequent calls.
sourcepub fn client_id_issued_at(self, input: i64) -> Self
pub fn client_id_issued_at(self, input: i64) -> Self
Indicates the time at which the clientId and clientSecret were issued.
sourcepub fn set_client_id_issued_at(self, input: Option<i64>) -> Self
pub fn set_client_id_issued_at(self, input: Option<i64>) -> Self
Indicates the time at which the clientId and clientSecret were issued.
sourcepub fn get_client_id_issued_at(&self) -> &Option<i64>
pub fn get_client_id_issued_at(&self) -> &Option<i64>
Indicates the time at which the clientId and clientSecret were issued.
sourcepub fn client_secret_expires_at(self, input: i64) -> Self
pub fn client_secret_expires_at(self, input: i64) -> Self
Indicates the time at which the clientId and clientSecret will become invalid.
sourcepub fn set_client_secret_expires_at(self, input: Option<i64>) -> Self
pub fn set_client_secret_expires_at(self, input: Option<i64>) -> Self
Indicates the time at which the clientId and clientSecret will become invalid.
sourcepub fn get_client_secret_expires_at(&self) -> &Option<i64>
pub fn get_client_secret_expires_at(&self) -> &Option<i64>
Indicates the time at which the clientId and clientSecret will become invalid.
An endpoint that the client can use to request authorization.
An endpoint that the client can use to request authorization.
An endpoint that the client can use to request authorization.
sourcepub fn token_endpoint(self, input: impl Into<String>) -> Self
pub fn token_endpoint(self, input: impl Into<String>) -> Self
An endpoint that the client can use to create tokens.
sourcepub fn set_token_endpoint(self, input: Option<String>) -> Self
pub fn set_token_endpoint(self, input: Option<String>) -> Self
An endpoint that the client can use to create tokens.
sourcepub fn get_token_endpoint(&self) -> &Option<String>
pub fn get_token_endpoint(&self) -> &Option<String>
An endpoint that the client can use to create tokens.
sourcepub fn build(self) -> RegisterClientOutput
pub fn build(self) -> RegisterClientOutput
Consumes the builder and constructs a RegisterClientOutput.
Trait Implementations§
source§impl Clone for RegisterClientOutputBuilder
impl Clone for RegisterClientOutputBuilder
source§fn clone(&self) -> RegisterClientOutputBuilder
fn clone(&self) -> RegisterClientOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for RegisterClientOutputBuilder
impl Debug for RegisterClientOutputBuilder
source§impl Default for RegisterClientOutputBuilder
impl Default for RegisterClientOutputBuilder
source§fn default() -> RegisterClientOutputBuilder
fn default() -> RegisterClientOutputBuilder
source§impl PartialEq for RegisterClientOutputBuilder
impl PartialEq for RegisterClientOutputBuilder
source§fn eq(&self, other: &RegisterClientOutputBuilder) -> bool
fn eq(&self, other: &RegisterClientOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.