Trait SendsApi

Source
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§

Source

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}

Source

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

Source

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}

Source

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}

Source

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

Source

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}

Source

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

Source

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

Source

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}

Source

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}

Source

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

Source

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}

Implementors§