pub trait TaskRelations {
// 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 project<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<Project, 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;
fn parent<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<Task, SDKError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}