pub type AddMemberResponse<C> = Result<Arc<SentGroupInvitationResponse>, <C as ClientApi>::Error>;
pub enum AddMemberResponse<C> { Ok(Arc<SentGroupInvitationResponse>), Err(<C as ClientApi>::Error), }
Contains the success value
Contains the error value