on_entry Event

Fired once for each entry retrieved.

Syntax

class ODataEntryEventParams(object):
  @property
  def id() -> str: ...
  @property
  def title() -> str: ...
  @property
  def summary() -> str: ...
  @property
  def e_tag() -> str: ...

# In class OData:
@property
def on_entry() -> Callable[[ODataEntryEventParams], None]: ...
@on_entry.setter
def on_entry(event_hook: Callable[[ODataEntryEventParams], None]) -> None: ...

Remarks

The on_entry event is fired once for each entry found in the response.

The entry properties are provided through entry_properties.

The entry links are provided through entry_links.

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