pub struct Client { /* private fields */ }Expand description
Entrypoint for interacting with the API client.
Implementations
sourceimpl Client
impl Client
sourcepub fn new<I, K, R, T, Q>(
client_id: I,
client_secret: K,
redirect_uri: R,
token: T,
refresh_token: Q
) -> Selfwhere
I: ToString,
K: ToString,
R: ToString,
T: ToString,
Q: ToString,
pub fn new<I, K, R, T, Q>(
client_id: I,
client_secret: K,
redirect_uri: R,
token: T,
refresh_token: Q
) -> Selfwhere
I: ToString,
K: ToString,
R: ToString,
T: ToString,
Q: ToString,
Create a new Client struct. It takes a type that can convert into
an &str (String or Vec<u8> for example). As long as the function is
given a valid API key your requests will work.
sourcepub fn set_auto_access_token_refresh(&mut self, enabled: bool) -> &mut Self
pub fn set_auto_access_token_refresh(&mut self, enabled: bool) -> &mut Self
Enables or disables the automatic refreshing of access tokens upon expiration
sourcepub async fn set_expires_at(&self, expires_at: Option<Instant>) -> &Self
pub async fn set_expires_at(&self, expires_at: Option<Instant>) -> &Self
Sets a specific Instant at which the access token should be considered expired.
The expiration value will only be used when automatic access token refreshing is
also enabled. None may be passed in if the expiration is unknown. In this case
automatic refreshes will be attempted when encountering an UNAUTHENTICATED status
code on a response.
sourcepub async fn expires_at(&self) -> Option<Instant>
pub async fn expires_at(&self) -> Option<Instant>
Gets the Instant at which the access token used by this client is set to expire
if one is known
sourcepub async fn set_expires_in(&self, expires_in: i64) -> &Self
pub async fn set_expires_in(&self, expires_in: i64) -> &Self
Sets the number of seconds in which the current access token should be considered expired
sourcepub async fn expires_in(&self) -> Option<Duration>
pub async fn expires_in(&self) -> Option<Duration>
Gets the number of seconds from now in which the current access token will be considered expired if one is known
sourcepub async fn is_expired(&self) -> Option<bool>
pub async fn is_expired(&self) -> Option<bool>
Determines if the access token currently stored in the client is expired. If the expiration can not be determined, None is returned
sourcepub fn with_host<H>(&self, host: H) -> Selfwhere
H: ToString,
pub fn with_host<H>(&self, host: H) -> Selfwhere
H: ToString,
Override the default host for the client.
sourcepub fn new_from_env<T, R>(token: T, refresh_token: R) -> Selfwhere
T: ToString,
R: ToString,
pub fn new_from_env<T, R>(token: T, refresh_token: R) -> Selfwhere
T: ToString,
R: ToString,
Create a new Client struct from environment variables. It
takes a type that can convert into
an &str (String or Vec<u8> for example). As long as the function is
given a valid API key and your requests will work.
We pass in the token and refresh token to the client so if you are storing
it in a database, you can get it first.
sourcepub fn user_consent_url(&self, scopes: &[String]) -> String
pub fn user_consent_url(&self, scopes: &[String]) -> String
Return a user consent url with an optional set of scopes. If no scopes are provided, they will not be passed in the url.
sourcepub async fn refresh_access_token(&self) -> Result<AccessToken>
pub async fn refresh_access_token(&self) -> Result<AccessToken>
Refresh an access token from a refresh token. Client must have a refresh token for this to work.
sourcepub async fn get_access_token(
&mut self,
code: &str,
state: &str
) -> Result<AccessToken>
pub async fn get_access_token(
&mut self,
code: &str,
state: &str
) -> Result<AccessToken>
Get an access token from the code returned by the URL paramter sent to the redirect URL.
sourcepub fn current_user(&self) -> CurrentUser
pub fn current_user(&self) -> CurrentUser
Return a reference to an interface that provides access to Current User operations.
sourcepub fn companies(&self) -> Companies
pub fn companies(&self) -> Companies
Return a reference to an interface that provides access to Companies operations.
sourcepub fn employees(&self) -> Employees
pub fn employees(&self) -> Employees
Return a reference to an interface that provides access to Employees operations.
sourcepub fn contractors(&self) -> Contractors
pub fn contractors(&self) -> Contractors
Return a reference to an interface that provides access to Contractors operations.
sourcepub fn payroll(&self) -> Payroll
pub fn payroll(&self) -> Payroll
Return a reference to an interface that provides access to Payroll operations.
sourcepub fn contractor_payments(&self) -> ContractorPayments
pub fn contractor_payments(&self) -> ContractorPayments
Return a reference to an interface that provides access to Contractor Payments operations.
sourcepub fn company_bank_accounts_beta(&self) -> CompanyBankAccountsBeta
pub fn company_bank_accounts_beta(&self) -> CompanyBankAccountsBeta
Return a reference to an interface that provides access to Company Bank Accounts (Beta) operations.
sourcepub fn benefits(&self) -> Benefits
pub fn benefits(&self) -> Benefits
Return a reference to an interface that provides access to Benefits operations.
sourcepub fn locations(&self) -> Locations
pub fn locations(&self) -> Locations
Return a reference to an interface that provides access to Locations operations.
sourcepub fn jobs(&self) -> Jobs
pub fn jobs(&self) -> Jobs
Return a reference to an interface that provides access to Jobs operations.
sourcepub fn job_applicants_beta(&self) -> JobApplicantsBeta
pub fn job_applicants_beta(&self) -> JobApplicantsBeta
Return a reference to an interface that provides access to Job Applicants (Beta) operations.
sourcepub fn compensations(&self) -> Compensations
pub fn compensations(&self) -> Compensations
Return a reference to an interface that provides access to Compensations operations.
sourcepub fn pay_schedules(&self) -> PaySchedules
pub fn pay_schedules(&self) -> PaySchedules
Return a reference to an interface that provides access to Pay Schedules operations.
sourcepub fn garnishments(&self) -> Garnishments
pub fn garnishments(&self) -> Garnishments
Return a reference to an interface that provides access to Garnishments operations.
sourcepub fn time_off_requests(&self) -> TimeOffRequests
pub fn time_off_requests(&self) -> TimeOffRequests
Return a reference to an interface that provides access to Time Off Requests operations.
sourcepub fn earning_type(&self) -> EarningType
pub fn earning_type(&self) -> EarningType
Return a reference to an interface that provides access to Earning Type operations.
sourcepub fn terminations(&self) -> Terminations
pub fn terminations(&self) -> Terminations
Return a reference to an interface that provides access to Terminations operations.
sourcepub fn custom_fields(&self) -> CustomFields
pub fn custom_fields(&self) -> CustomFields
Return a reference to an interface that provides access to Custom Fields operations.
sourcepub fn admins_beta(&self) -> AdminsBeta
pub fn admins_beta(&self) -> AdminsBeta
Return a reference to an interface that provides access to Admins (Beta) operations.