Source code for fairgraph.openminds.publications.live_paper_section
"""
<description not available>
"""
# this file was auto-generated
from openminds.properties import Property
from openminds.v4.publications import LivePaperSection as OMLivePaperSection
from fairgraph import KGObject
[docs]
class LivePaperSection(KGObject, OMLivePaperSection):
"""
<description not available>
"""
type_ = "https://openminds.om-i.org/types/LivePaperSection"
default_space = "livepapers"
# forward properties are defined in the parent class (in openMINDS-Python)
reverse_properties = [
Property(
"has_parts",
"openminds.v4.publications.LivePaperResourceItem",
"isPartOf",
reverse="is_part_of",
multiple=True,
description="reverse of 'is_part_of'",
),
]
existence_query_properties = ("is_part_of", "name", "order", "type")
def __init__(
self,
name=None,
description=None,
has_parts=None,
is_part_of=None,
order=None,
type=None,
id=None,
data=None,
space=None,
release_status=None,
):
return KGObject.__init__(
self,
id=id,
space=space,
release_status=release_status,
data=data,
name=name,
description=description,
has_parts=has_parts,
is_part_of=is_part_of,
order=order,
type=type,
)