Skip to main content

ISO8601UTCDateTime

What it is

  • A thin subclass wrapper around naas_abi_marketplace.applications.linkedin.ontologies.modules.ActOfConnectionsOnLinkedIn.ISO8601UTCDateTime.
  • Provides an actions() hook method intended to be overridden with custom logic.

Public API

  • class ISO8601UTCDateTime(_ISO8601UTCDateTime)
    • Inherits all behavior from the upstream _ISO8601UTCDateTime class.
    • actions(self)
      • Placeholder method for action logic.
      • Currently does nothing (pass) and returns None.

Configuration/Dependencies

  • Depends on:
    • naas_abi_marketplace.applications.linkedin.ontologies.modules.ActOfConnectionsOnLinkedIn.ISO8601UTCDateTime

Usage

from naas_abi_marketplace.applications.linkedin.ontologies.classes.ontology.naas.ai.abi.ISO8601UTCDateTime import (
ISO8601UTCDateTime,
)

obj = ISO8601UTCDateTime()
result = obj.actions() # currently returns None
print(result)

Caveats

  • actions() is a no-op in this implementation; meaningful behavior requires overriding it (or relying on inherited methods from the upstream class).