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