pub trait ProjectRelations {
// Required methods
fn owner<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<Member, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn tasks<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<Vec<Task>, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn lead<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<Member, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}