diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-11-19 12:18:30 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-11-19 14:55:15 -0800 |
commit | ba4a85cf2ee51d775137541944e2e9d24b2e1bc9 (patch) | |
tree | c87b083e9fa9126098c069a6622a131b4c0d04f3 /python_openapi_client/fatcat_openapi_client/models | |
parent | e29142c986defd308a391c812e57f5d8df575cde (diff) | |
download | fatcat-ba4a85cf2ee51d775137541944e2e9d24b2e1bc9.tar.gz fatcat-ba4a85cf2ee51d775137541944e2e9d24b2e1bc9.zip |
codegen python openapi client
Diffstat (limited to 'python_openapi_client/fatcat_openapi_client/models')
-rw-r--r-- | python_openapi_client/fatcat_openapi_client/models/release_ext_ids.py | 34 |
1 files changed, 31 insertions, 3 deletions
diff --git a/python_openapi_client/fatcat_openapi_client/models/release_ext_ids.py b/python_openapi_client/fatcat_openapi_client/models/release_ext_ids.py index 3ac0f402..c8ca4b06 100644 --- a/python_openapi_client/fatcat_openapi_client/models/release_ext_ids.py +++ b/python_openapi_client/fatcat_openapi_client/models/release_ext_ids.py @@ -43,7 +43,8 @@ class ReleaseExtIds(object): 'ark': 'str', 'mag': 'str', 'doaj': 'str', - 'dblp': 'str' + 'dblp': 'str', + 'oai': 'str' } attribute_map = { @@ -58,10 +59,11 @@ class ReleaseExtIds(object): 'ark': 'ark', 'mag': 'mag', 'doaj': 'doaj', - 'dblp': 'dblp' + 'dblp': 'dblp', + 'oai': 'oai' } - def __init__(self, doi=None, wikidata_qid=None, isbn13=None, pmid=None, pmcid=None, core=None, arxiv=None, jstor=None, ark=None, mag=None, doaj=None, dblp=None): # noqa: E501 + def __init__(self, doi=None, wikidata_qid=None, isbn13=None, pmid=None, pmcid=None, core=None, arxiv=None, jstor=None, ark=None, mag=None, doaj=None, dblp=None, oai=None): # noqa: E501 """ReleaseExtIds - a model defined in OpenAPI""" # noqa: E501 self._doi = None @@ -76,6 +78,7 @@ class ReleaseExtIds(object): self._mag = None self._doaj = None self._dblp = None + self._oai = None self.discriminator = None if doi is not None: @@ -102,6 +105,8 @@ class ReleaseExtIds(object): self.doaj = doaj if dblp is not None: self.dblp = dblp + if oai is not None: + self.oai = oai @property def doi(self): @@ -379,6 +384,29 @@ class ReleaseExtIds(object): self._dblp = dblp + @property + def oai(self): + """Gets the oai of this ReleaseExtIds. # noqa: E501 + + OAI-PMH identifier; only used when an OAI-PMH record is the only authoritative metadata (eg, journal OAI-PMH feeds w/o DOIs) # noqa: E501 + + :return: The oai of this ReleaseExtIds. # noqa: E501 + :rtype: str + """ + return self._oai + + @oai.setter + def oai(self, oai): + """Sets the oai of this ReleaseExtIds. + + OAI-PMH identifier; only used when an OAI-PMH record is the only authoritative metadata (eg, journal OAI-PMH feeds w/o DOIs) # noqa: E501 + + :param oai: The oai of this ReleaseExtIds. # noqa: E501 + :type: str + """ + + self._oai = oai + def to_dict(self): """Returns the model properties as a dict""" result = {} |