diff options
| author | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-09 10:10:42 -0700 | 
|---|---|---|
| committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-09 10:10:42 -0700 | 
| commit | b15eff77fdb7974ce2bf3c2e44c8edc354f9f452 (patch) | |
| tree | 5bccb9ff2633eb35dc00babc0b2dd1842f02e49b /python/fatcat_client/models | |
| parent | 419bddcb0377e82e7177356350d35bf84b3e80d8 (diff) | |
| parent | a29beab0683d77086cc1b431779d0540dc5a9b49 (diff) | |
| download | fatcat-b15eff77fdb7974ce2bf3c2e44c8edc354f9f452.tar.gz fatcat-b15eff77fdb7974ce2bf3c2e44c8edc354f9f452.zip | |
Merge branch 'http-verbs' into cockroach
Manually merged conflicts:
  rust/migrations/2018-05-12-001226_init/up.sql
  rust/src/api_server.rs
  rust/src/database_schema.rs
Diffstat (limited to 'python/fatcat_client/models')
| -rw-r--r-- | python/fatcat_client/models/creator_entity.py | 4 | ||||
| -rw-r--r-- | python/fatcat_client/models/release_entity.py | 28 | 
2 files changed, 29 insertions, 3 deletions
| diff --git a/python/fatcat_client/models/creator_entity.py b/python/fatcat_client/models/creator_entity.py index a9e459ee..de096281 100644 --- a/python/fatcat_client/models/creator_entity.py +++ b/python/fatcat_client/models/creator_entity.py @@ -139,8 +139,8 @@ class CreatorEntity(object):              raise ValueError("Invalid value for `orcid`, length must be less than or equal to `19`")  # noqa: E501          if orcid is not None and len(orcid) < 19:              raise ValueError("Invalid value for `orcid`, length must be greater than or equal to `19`")  # noqa: E501 -        if orcid is not None and not re.search('\\d{4}-\\d{4}-\\d{4}-\\d{4}', orcid):  # noqa: E501 -            raise ValueError("Invalid value for `orcid`, must be a follow pattern or equal to `/\\d{4}-\\d{4}-\\d{4}-\\d{4}/`")  # noqa: E501 +        if orcid is not None and not re.search('\\d{4}-\\d{4}-\\d{4}-\\d{3}[\\dX]', orcid):  # noqa: E501 +            raise ValueError("Invalid value for `orcid`, must be a follow pattern or equal to `/\\d{4}-\\d{4}-\\d{4}-\\d{3}[\\dX]/`")  # noqa: E501          self._orcid = orcid diff --git a/python/fatcat_client/models/release_entity.py b/python/fatcat_client/models/release_entity.py index 3412ca92..79e2c64f 100644 --- a/python/fatcat_client/models/release_entity.py +++ b/python/fatcat_client/models/release_entity.py @@ -48,6 +48,7 @@ class ReleaseEntity(object):          'wikidata_qid': 'str',          'pmcid': 'str',          'pmid': 'str', +        'core_id': 'str',          'isbn13': 'str',          'doi': 'str',          'release_date': 'date', @@ -78,6 +79,7 @@ class ReleaseEntity(object):          'wikidata_qid': 'wikidata_qid',          'pmcid': 'pmcid',          'pmid': 'pmid', +        'core_id': 'core_id',          'isbn13': 'isbn13',          'doi': 'doi',          'release_date': 'release_date', @@ -96,7 +98,7 @@ class ReleaseEntity(object):          'extra': 'extra'      } -    def __init__(self, abstracts=None, refs=None, contribs=None, language=None, publisher=None, pages=None, issue=None, volume=None, wikidata_qid=None, pmcid=None, pmid=None, isbn13=None, doi=None, release_date=None, release_status=None, release_type=None, container_id=None, files=None, container=None, work_id=None, title=None, state=None, ident=None, revision=None, redirect=None, editgroup_id=None, extra=None):  # noqa: E501 +    def __init__(self, abstracts=None, refs=None, contribs=None, language=None, publisher=None, pages=None, issue=None, volume=None, wikidata_qid=None, pmcid=None, pmid=None, core_id=None, isbn13=None, doi=None, release_date=None, release_status=None, release_type=None, container_id=None, files=None, container=None, work_id=None, title=None, state=None, ident=None, revision=None, redirect=None, editgroup_id=None, extra=None):  # noqa: E501          """ReleaseEntity - a model defined in Swagger"""  # noqa: E501          self._abstracts = None @@ -110,6 +112,7 @@ class ReleaseEntity(object):          self._wikidata_qid = None          self._pmcid = None          self._pmid = None +        self._core_id = None          self._isbn13 = None          self._doi = None          self._release_date = None @@ -150,6 +153,8 @@ class ReleaseEntity(object):              self.pmcid = pmcid          if pmid is not None:              self.pmid = pmid +        if core_id is not None: +            self.core_id = core_id          if isbn13 is not None:              self.isbn13 = isbn13          if doi is not None: @@ -416,6 +421,27 @@ class ReleaseEntity(object):          self._pmid = pmid      @property +    def core_id(self): +        """Gets the core_id of this ReleaseEntity.  # noqa: E501 + + +        :return: The core_id of this ReleaseEntity.  # noqa: E501 +        :rtype: str +        """ +        return self._core_id + +    @core_id.setter +    def core_id(self, core_id): +        """Sets the core_id of this ReleaseEntity. + + +        :param core_id: The core_id of this ReleaseEntity.  # noqa: E501 +        :type: str +        """ + +        self._core_id = core_id + +    @property      def isbn13(self):          """Gets the isbn13 of this ReleaseEntity.  # noqa: E501 | 
