pub struct OrganizationIntegrationApiClient {
configuration: Arc<Configuration>,
}
Fields§
§configuration: Arc<Configuration>
Implementations§
Source§impl OrganizationIntegrationApiClient
impl OrganizationIntegrationApiClient
pub fn new(configuration: Arc<Configuration>) -> Self
Trait Implementations§
Source§impl OrganizationIntegrationApi for OrganizationIntegrationApiClient
impl OrganizationIntegrationApi for OrganizationIntegrationApiClient
Source§fn create<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
organization_integration_request_model: Option<OrganizationIntegrationRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<OrganizationIntegrationResponseModel, Error<CreateError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn create<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
organization_integration_request_model: Option<OrganizationIntegrationRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<OrganizationIntegrationResponseModel, Error<CreateError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
POST /organizations/{organizationId}/integrations
Source§fn delete<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
integration_id: Uuid,
) -> 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,
organization_id: Uuid,
integration_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<(), Error<DeleteError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
DELETE /organizations/{organizationId}/integrations/{integrationId}
Source§fn get<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<Vec<OrganizationIntegrationResponseModel>, Error<GetError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn get<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<Vec<OrganizationIntegrationResponseModel>, Error<GetError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
GET /organizations/{organizationId}/integrations
Source§fn update<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
integration_id: Uuid,
organization_integration_request_model: Option<OrganizationIntegrationRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<OrganizationIntegrationResponseModel, Error<UpdateError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn update<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
integration_id: Uuid,
organization_integration_request_model: Option<OrganizationIntegrationRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<OrganizationIntegrationResponseModel, Error<UpdateError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
PUT /organizations/{organizationId}/integrations/{integrationId}
Auto Trait Implementations§
impl Freeze for OrganizationIntegrationApiClient
impl !RefUnwindSafe for OrganizationIntegrationApiClient
impl Send for OrganizationIntegrationApiClient
impl Sync for OrganizationIntegrationApiClient
impl Unpin for OrganizationIntegrationApiClient
impl !UnwindSafe for OrganizationIntegrationApiClient
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