diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-26 23:26:22 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-26 23:26:22 -0800 |
commit | 0182cd1456ca1457747ff1363d9d5c5cf95ee2f7 (patch) | |
tree | f619d908954e47f7fcc357e3b089b812e8885790 /python/fatcat_client/models/release_entity_abstracts.py | |
parent | 81b40c73e9f6d17637b90dbea1808171f89c9351 (diff) | |
download | fatcat-0182cd1456ca1457747ff1363d9d5c5cf95ee2f7.tar.gz fatcat-0182cd1456ca1457747ff1363d9d5c5cf95ee2f7.zip |
codegen
Diffstat (limited to 'python/fatcat_client/models/release_entity_abstracts.py')
-rw-r--r-- | python/fatcat_client/models/release_entity_abstracts.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/python/fatcat_client/models/release_entity_abstracts.py b/python/fatcat_client/models/release_entity_abstracts.py index 1adf832a..2818e112 100644 --- a/python/fatcat_client/models/release_entity_abstracts.py +++ b/python/fatcat_client/models/release_entity_abstracts.py @@ -80,6 +80,12 @@ class ReleaseEntityAbstracts(object): :param sha1: The sha1 of this ReleaseEntityAbstracts. # noqa: E501 :type: str """ + if sha1 is not None and len(sha1) > 40: + raise ValueError("Invalid value for `sha1`, length must be less than or equal to `40`") # noqa: E501 + if sha1 is not None and len(sha1) < 40: + raise ValueError("Invalid value for `sha1`, length must be greater than or equal to `40`") # noqa: E501 + if sha1 is not None and not re.search('[a-f0-9]{40}', sha1): # noqa: E501 + raise ValueError("Invalid value for `sha1`, must be a follow pattern or equal to `/[a-f0-9]{40}/`") # noqa: E501 self._sha1 = sha1 |