etebase_invitation_manager_list_incoming method

Pointer<EtebaseInvitationListResponse> etebase_invitation_manager_list_incoming(
  1. Pointer<EtebaseCollectionInvitationManager> this_,
  2. Pointer<EtebaseFetchOptions> fetch_options
)

List the incoming collection invitations for the account

@param this_ the object handle @param fetch_options the EtebaseFetchOptions to fetch with

Implementation

ffi.Pointer<EtebaseInvitationListResponse>
    etebase_invitation_manager_list_incoming(
  ffi.Pointer<EtebaseCollectionInvitationManager> this_,
  ffi.Pointer<EtebaseFetchOptions> fetch_options,
) {
  return _etebase_invitation_manager_list_incoming(
    this_,
    fetch_options,
  );
}