pub trait SendsApi: Send + Sync {
// Required methods
fn access<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
send_access_request_model: Option<SendAccessRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<AccessError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait;
fn azure_validate_file<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<(), Error<AzureValidateFileError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn delete<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
) -> Pin<Box<dyn Future<Output = Result<(), Error<DeleteError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait;
fn get<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
) -> Pin<Box<dyn Future<Output = Result<SendResponseModel, Error<GetError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait;
fn get_all<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<SendResponseModelListResponseModel, Error<GetAllError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_send_file_download_data<'a, 'life0, 'async_trait>(
&'life0 self,
encoded_send_id: &'a str,
file_id: &'a str,
send_access_request_model: Option<SendAccessRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<GetSendFileDownloadDataError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait;
fn post<'a, 'life0, 'async_trait>(
&'life0 self,
send_request_model: Option<SendRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<SendResponseModel, Error<PostError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait;
fn post_file<'a, 'life0, 'async_trait>(
&'life0 self,
send_request_model: Option<SendRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<SendFileUploadDataResponseModel, Error<PostFileError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait;
fn post_file_for_existing_send<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
file_id: &'a str,
) -> Pin<Box<dyn Future<Output = Result<(), Error<PostFileForExistingSendError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait;
fn put<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
send_request_model: Option<SendRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<SendResponseModel, Error<PutError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait;
fn put_remove_password<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
) -> Pin<Box<dyn Future<Output = Result<SendResponseModel, Error<PutRemovePasswordError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait;
fn renew_file_upload<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
file_id: &'a str,
) -> Pin<Box<dyn Future<Output = Result<SendFileUploadDataResponseModel, Error<RenewFileUploadError>>> + Send + 'async_trait>>
where Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait;
}
Required Methods§
Sourcefn access<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
send_access_request_model: Option<SendAccessRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<AccessError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn access<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
send_access_request_model: Option<SendAccessRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<AccessError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
POST /sends/access/{id}
Sourcefn azure_validate_file<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<(), Error<AzureValidateFileError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn azure_validate_file<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<(), Error<AzureValidateFileError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
POST /sends/file/validate/azure
Sourcefn delete<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
) -> Pin<Box<dyn Future<Output = Result<(), Error<DeleteError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn delete<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
) -> Pin<Box<dyn Future<Output = Result<(), Error<DeleteError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
DELETE /sends/{id}
Sourcefn get<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
) -> Pin<Box<dyn Future<Output = Result<SendResponseModel, Error<GetError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn get<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
) -> Pin<Box<dyn Future<Output = Result<SendResponseModel, Error<GetError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
GET /sends/{id}
Sourcefn get_all<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<SendResponseModelListResponseModel, Error<GetAllError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_all<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<SendResponseModelListResponseModel, Error<GetAllError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
GET /sends
Sourcefn get_send_file_download_data<'a, 'life0, 'async_trait>(
&'life0 self,
encoded_send_id: &'a str,
file_id: &'a str,
send_access_request_model: Option<SendAccessRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<GetSendFileDownloadDataError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn get_send_file_download_data<'a, 'life0, 'async_trait>(
&'life0 self,
encoded_send_id: &'a str,
file_id: &'a str,
send_access_request_model: Option<SendAccessRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<(), Error<GetSendFileDownloadDataError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
POST /sends/{encodedSendId}/access/file/{fileId}
Sourcefn post<'a, 'life0, 'async_trait>(
&'life0 self,
send_request_model: Option<SendRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<SendResponseModel, Error<PostError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn post<'a, 'life0, 'async_trait>(
&'life0 self,
send_request_model: Option<SendRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<SendResponseModel, Error<PostError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
POST /sends
Sourcefn post_file<'a, 'life0, 'async_trait>(
&'life0 self,
send_request_model: Option<SendRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<SendFileUploadDataResponseModel, Error<PostFileError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn post_file<'a, 'life0, 'async_trait>(
&'life0 self,
send_request_model: Option<SendRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<SendFileUploadDataResponseModel, Error<PostFileError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
POST /sends/file/v2
Sourcefn post_file_for_existing_send<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
file_id: &'a str,
) -> Pin<Box<dyn Future<Output = Result<(), Error<PostFileForExistingSendError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn post_file_for_existing_send<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
file_id: &'a str,
) -> Pin<Box<dyn Future<Output = Result<(), Error<PostFileForExistingSendError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
POST /sends/{id}/file/{fileId}
Sourcefn put<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
send_request_model: Option<SendRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<SendResponseModel, Error<PutError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn put<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
send_request_model: Option<SendRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<SendResponseModel, Error<PutError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
PUT /sends/{id}
Sourcefn put_remove_password<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
) -> Pin<Box<dyn Future<Output = Result<SendResponseModel, Error<PutRemovePasswordError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn put_remove_password<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
) -> Pin<Box<dyn Future<Output = Result<SendResponseModel, Error<PutRemovePasswordError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
PUT /sends/{id}/remove-password
Sourcefn renew_file_upload<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
file_id: &'a str,
) -> Pin<Box<dyn Future<Output = Result<SendFileUploadDataResponseModel, Error<RenewFileUploadError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn renew_file_upload<'a, 'life0, 'async_trait>(
&'life0 self,
id: &'a str,
file_id: &'a str,
) -> Pin<Box<dyn Future<Output = Result<SendFileUploadDataResponseModel, Error<RenewFileUploadError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
GET /sends/{id}/file/{fileId}