IPWorks Cloud 2020 Python Edition

Questions / Feedback?

on_user_list Event

This event fires once for each user returned when ListUsers or GetUserInfo is called.

Syntax

class ShareFileUserListEventParams(object):
  @property
  def id() -> str: ...
  @property
  def first_name() -> str: ...
  @property
  def last_name() -> str: ...
  @property
  def company() -> str: ...
  @property
  def email() -> str: ...
  @property
  def creation_date() -> str: ...

# In class ShareFile:
@property
def on_user_list() -> Callable[[ShareFileUserListEventParams], None]: ...
@on_user_list.setter
def on_user_list(event_hook: Callable[[ShareFileUserListEventParams], None]) -> None: ...

Remarks

This event fires once for each user returned when list_users or get_user_info is called. The users cannot be modified from this event. If the user does not have a specified company that parameter will be left as an empty string ("").

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 Python Edition - Version 20.0 [Build 8265]