pub struct TimeOff {
pub client: Client,
}
Fields§
§client: Client
Implementations§
Source§impl TimeOff
impl TimeOff
Sourcepub async fn get_index_timeoff<'a>(
&'a self,
employment_id: Option<String>,
order_by: Option<OrderBy>,
page: Option<i64>,
page_size: Option<i64>,
sort_by: Option<SortBy>,
status: Option<GetIndexTimeoffStatus>,
timeoff_type: Option<TimeoffType>,
) -> Result<ListTimeoffResponse, Error>
pub async fn get_index_timeoff<'a>( &'a self, employment_id: Option<String>, order_by: Option<OrderBy>, page: Option<i64>, page_size: Option<i64>, sort_by: Option<SortBy>, status: Option<GetIndexTimeoffStatus>, timeoff_type: Option<TimeoffType>, ) -> Result<ListTimeoffResponse, Error>
List Time Off
Lists all Time Off records.
Parameters:
employment_id: Option<String>
: Only show time off for a specific employmentorder_by: Option<crate::types::OrderBy>
: Sort orderpage: Option<i64>
: Starts fetching records after the given pagepage_size: Option<i64>
: Change the amount of records returned per page, defaults to 20, limited to 100sort_by: Option<crate::types::SortBy>
: Field to sort bystatus: Option<crate::types::GetIndexTimeoffStatus>
: Filter time off by its statustimeoff_type: Option<crate::types::TimeoffType>
: Filter time off by its type
async fn example_time_off_get_index_timeoff() -> anyhow::Result<()> {
let client = remote_api::Client::new_from_env();
let result: remote_api::types::ListTimeoffResponse = client
.time_off()
.get_index_timeoff(
Some("some-string".to_string()),
Some(remote_api::types::OrderBy::Desc),
Some(4 as i64),
Some(4 as i64),
Some(remote_api::types::SortBy::Status),
Some(remote_api::types::GetIndexTimeoffStatus::CancelRequested),
Some(remote_api::types::TimeoffType::MilitaryLeave),
)
.await?;
println!("{:?}", result);
Ok(())
}
Sourcepub async fn post_create_timeoff<'a>(
&'a self,
body: &CreateApprovedTimeoffParams,
) -> Result<TimeoffResponse, Error>
pub async fn post_create_timeoff<'a>( &'a self, body: &CreateApprovedTimeoffParams, ) -> Result<TimeoffResponse, Error>
Create Time Off
Creates a Time Off record
async fn example_time_off_post_create_timeoff() -> anyhow::Result<()> {
let client = remote_api::Client::new_from_env();
let result: remote_api::types::TimeoffResponse = client
.time_off()
.post_create_timeoff(&remote_api::types::CreateApprovedTimeoffParams {
document: Some(remote_api::types::TimeoffDocumentParams {
content: "some-string".to_string(),
name: "some-string".to_string(),
}),
employment_id: "some-string".to_string(),
end_date: chrono::Utc::now().date_naive(),
notes: Some("some-string".to_string()),
start_date: chrono::Utc::now().date_naive(),
timeoff_days: vec![remote_api::types::TimeoffDaysParams {
day: Some(chrono::Utc::now().date_naive()),
hours: Some(4 as i64),
}],
timeoff_type: remote_api::types::TimeoffType::MilitaryLeave,
timezone: "some-string".to_string(),
approved_at: Some(chrono::Utc::now()),
approver_id: Some("some-string".to_string()),
status: Some(remote_api::types::CreateApprovedTimeoffParamsStatus::Approved),
})
.await?;
println!("{:?}", result);
Ok(())
}
Sourcepub async fn get_timeoff_types_timeoff<'a>(
&'a self,
) -> Result<ListTimeoffTypesResponse, Error>
pub async fn get_timeoff_types_timeoff<'a>( &'a self, ) -> Result<ListTimeoffTypesResponse, Error>
List Time Off Types
Lists all time off types that can be used for the timeoff_type
parameter
async fn example_time_off_get_timeoff_types_timeoff() -> anyhow::Result<()> {
let client = remote_api::Client::new_from_env();
let result: remote_api::types::ListTimeoffTypesResponse =
client.time_off().get_timeoff_types_timeoff().await?;
println!("{:?}", result);
Ok(())
}
Sourcepub async fn get_show_timeoff<'a>(
&'a self,
timeoff_id: &'a str,
) -> Result<TimeoffResponse, Error>
pub async fn get_show_timeoff<'a>( &'a self, timeoff_id: &'a str, ) -> Result<TimeoffResponse, Error>
Show Time Off
Shows a single Time Off record
Parameters:
timeoff_id: &'astr
: Timeoff ID (required)
async fn example_time_off_get_show_timeoff() -> anyhow::Result<()> {
let client = remote_api::Client::new_from_env();
let result: remote_api::types::TimeoffResponse =
client.time_off().get_show_timeoff("some-string").await?;
println!("{:?}", result);
Ok(())
}
Sourcepub async fn patch_update_timeoff_2<'a>(
&'a self,
body: &UpdateApprovedTimeoffParams,
) -> Result<TimeoffResponse, Error>
pub async fn patch_update_timeoff_2<'a>( &'a self, body: &UpdateApprovedTimeoffParams, ) -> Result<TimeoffResponse, Error>
Update Time Off
Updates a Time Off record. This endpoint can also be used for cancelling a time off.
async fn example_time_off_patch_update_timeoff_2() -> anyhow::Result<()> {
let client = remote_api::Client::new_from_env();
let result: remote_api::types::TimeoffResponse = client
.time_off()
.patch_update_timeoff_2(&remote_api::types::UpdateApprovedTimeoffParams {
approved_at: Some(chrono::Utc::now()),
approver_id: Some("some-string".to_string()),
cancel_reason: "some-string".to_string(),
document: Some(remote_api::types::TimeoffDocumentParams {
content: "some-string".to_string(),
name: "some-string".to_string(),
}),
edit_reason: "some-string".to_string(),
end_date: Some(chrono::Utc::now().date_naive()),
notes: Some("some-string".to_string()),
start_date: Some(chrono::Utc::now().date_naive()),
status: Some(remote_api::types::UpdateApprovedTimeoffParamsStatus::Cancelled),
timeoff_days: Some(vec![remote_api::types::TimeoffDaysParams {
day: Some(chrono::Utc::now().date_naive()),
hours: Some(4 as i64),
}]),
timeoff_type: Some(remote_api::types::TimeoffType::MilitaryLeave),
timezone: Some("some-string".to_string()),
})
.await?;
println!("{:?}", result);
Ok(())
}
Sourcepub async fn patch_update_timeoff<'a>(
&'a self,
body: &UpdateApprovedTimeoffParams,
) -> Result<TimeoffResponse, Error>
pub async fn patch_update_timeoff<'a>( &'a self, body: &UpdateApprovedTimeoffParams, ) -> Result<TimeoffResponse, Error>
Update Time Off
Updates a Time Off record. This endpoint can also be used for cancelling a time off.
async fn example_time_off_patch_update_timeoff() -> anyhow::Result<()> {
let client = remote_api::Client::new_from_env();
let result: remote_api::types::TimeoffResponse = client
.time_off()
.patch_update_timeoff(&remote_api::types::UpdateApprovedTimeoffParams {
approved_at: Some(chrono::Utc::now()),
approver_id: Some("some-string".to_string()),
cancel_reason: "some-string".to_string(),
document: Some(remote_api::types::TimeoffDocumentParams {
content: "some-string".to_string(),
name: "some-string".to_string(),
}),
edit_reason: "some-string".to_string(),
end_date: Some(chrono::Utc::now().date_naive()),
notes: Some("some-string".to_string()),
start_date: Some(chrono::Utc::now().date_naive()),
status: Some(remote_api::types::UpdateApprovedTimeoffParamsStatus::Cancelled),
timeoff_days: Some(vec![remote_api::types::TimeoffDaysParams {
day: Some(chrono::Utc::now().date_naive()),
hours: Some(4 as i64),
}]),
timeoff_type: Some(remote_api::types::TimeoffType::MilitaryLeave),
timezone: Some("some-string".to_string()),
})
.await?;
println!("{:?}", result);
Ok(())
}
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TimeOff
impl !RefUnwindSafe for TimeOff
impl Send for TimeOff
impl Sync for TimeOff
impl Unpin for TimeOff
impl !UnwindSafe for TimeOff
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more