pub struct OrganizationReportsApiClient {
configuration: Arc<Configuration>,
}Fields§
§configuration: Arc<Configuration>Implementations§
Source§impl OrganizationReportsApiClient
impl OrganizationReportsApiClient
pub fn new(configuration: Arc<Configuration>) -> Self
Trait Implementations§
Source§impl OrganizationReportsApi for OrganizationReportsApiClient
impl OrganizationReportsApi for OrganizationReportsApiClient
Source§fn create_organization_report<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
add_organization_report_request: Option<AddOrganizationReportRequest>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<CreateOrganizationReportError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn create_organization_report<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
add_organization_report_request: Option<AddOrganizationReportRequest>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<CreateOrganizationReportError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
POST /reports/organizations/{organizationId}
Source§fn get_latest_organization_report<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<(), Error<GetLatestOrganizationReportError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn get_latest_organization_report<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<(), Error<GetLatestOrganizationReportError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
GET /reports/organizations/{organizationId}/latest
Source§fn get_organization_report<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
report_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<(), Error<GetOrganizationReportError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn get_organization_report<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
report_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<(), Error<GetOrganizationReportError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
GET /reports/organizations/{organizationId}/{reportId}
Source§fn get_organization_report_application_data<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
report_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<(), Error<GetOrganizationReportApplicationDataError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn get_organization_report_application_data<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
report_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<(), Error<GetOrganizationReportApplicationDataError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
GET /reports/organizations/{organizationId}/data/application/{reportId}
Source§fn get_organization_report_data<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
report_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<(), Error<GetOrganizationReportDataError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn get_organization_report_data<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
report_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<(), Error<GetOrganizationReportDataError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
GET /reports/organizations/{organizationId}/data/report/{reportId}
Source§fn get_organization_report_summary<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
report_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<(), Error<GetOrganizationReportSummaryError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn get_organization_report_summary<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
report_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<(), Error<GetOrganizationReportSummaryError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
GET /reports/organizations/{organizationId}/data/summary/{reportId}
Source§fn get_organization_report_summary_data_by_date_range<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
start_date: Option<String>,
end_date: Option<String>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<GetOrganizationReportSummaryDataByDateRangeError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn get_organization_report_summary_data_by_date_range<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
start_date: Option<String>,
end_date: Option<String>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<GetOrganizationReportSummaryDataByDateRangeError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
GET /reports/organizations/{organizationId}/data/summary
Source§fn update_organization_report<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
report_id: &'a str,
update_organization_report_request: Option<UpdateOrganizationReportRequest>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<UpdateOrganizationReportError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn update_organization_report<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
report_id: &'a str,
update_organization_report_request: Option<UpdateOrganizationReportRequest>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<UpdateOrganizationReportError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
PATCH /reports/organizations/{organizationId}/{reportId}
Source§fn update_organization_report_application_data<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
report_id: Uuid,
update_organization_report_application_data_request: Option<UpdateOrganizationReportApplicationDataRequest>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<UpdateOrganizationReportApplicationDataError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn update_organization_report_application_data<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
report_id: Uuid,
update_organization_report_application_data_request: Option<UpdateOrganizationReportApplicationDataRequest>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<UpdateOrganizationReportApplicationDataError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
PATCH /reports/organizations/{organizationId}/data/application/{reportId}
Source§fn update_organization_report_data<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
report_id: Uuid,
update_organization_report_data_request: Option<UpdateOrganizationReportDataRequest>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<UpdateOrganizationReportDataError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn update_organization_report_data<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
report_id: Uuid,
update_organization_report_data_request: Option<UpdateOrganizationReportDataRequest>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<UpdateOrganizationReportDataError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
PATCH /reports/organizations/{organizationId}/data/report/{reportId}
Source§fn update_organization_report_summary<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
report_id: Uuid,
update_organization_report_summary_request: Option<UpdateOrganizationReportSummaryRequest>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<UpdateOrganizationReportSummaryError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn update_organization_report_summary<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
report_id: Uuid,
update_organization_report_summary_request: Option<UpdateOrganizationReportSummaryRequest>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<UpdateOrganizationReportSummaryError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
PATCH /reports/organizations/{organizationId}/data/summary/{reportId}
Auto Trait Implementations§
impl Freeze for OrganizationReportsApiClient
impl !RefUnwindSafe for OrganizationReportsApiClient
impl Send for OrganizationReportsApiClient
impl Sync for OrganizationReportsApiClient
impl Unpin for OrganizationReportsApiClient
impl UnsafeUnpin for OrganizationReportsApiClient
impl !UnwindSafe for OrganizationReportsApiClient
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
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