aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-11-26 23:43:46 -0800
committerBryan Newbold <bnewbold@robocracy.org>2018-11-26 23:43:46 -0800
commit32cd25bf48d54f5ede4e327d073d2782e4a81524 (patch)
tree9197a6df681a128c5fe6c17184574914bae2e7bd /python
parent9a697a8990af91ba72b9754bbbb8576be6ede6ad (diff)
downloadfatcat-32cd25bf48d54f5ede4e327d073d2782e4a81524.tar.gz
fatcat-32cd25bf48d54f5ede4e327d073d2782e4a81524.zip
codegen hide changes
Diffstat (limited to 'python')
-rw-r--r--python/fatcat_client/api/default_api.py72
1 files changed, 60 insertions, 12 deletions
diff --git a/python/fatcat_client/api/default_api.py b/python/fatcat_client/api/default_api.py
index d3ce3cee..f1b8502e 100644
--- a/python/fatcat_client/api/default_api.py
+++ b/python/fatcat_client/api/default_api.py
@@ -1971,6 +1971,7 @@ class DefaultApi(object):
:param async bool
:param str id: (required)
:param str expand: List of sub-entities to expand in response. For containers, none accepted (yet).
+ :param str hide: List of entity fields to elide in response. For containers, none accepted (yet).
:return: ContainerEntity
If the method is called asynchronously,
returns the request thread.
@@ -1993,12 +1994,13 @@ class DefaultApi(object):
:param async bool
:param str id: (required)
:param str expand: List of sub-entities to expand in response. For containers, none accepted (yet).
+ :param str hide: List of entity fields to elide in response. For containers, none accepted (yet).
:return: ContainerEntity
If the method is called asynchronously,
returns the request thread.
"""
- all_params = ['id', 'expand'] # noqa: E501
+ all_params = ['id', 'expand', 'hide'] # noqa: E501
all_params.append('async')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
@@ -2027,6 +2029,8 @@ class DefaultApi(object):
query_params = []
if 'expand' in params:
query_params.append(('expand', params['expand'])) # noqa: E501
+ if 'hide' in params:
+ query_params.append(('hide', params['hide'])) # noqa: E501
header_params = {}
@@ -2173,6 +2177,7 @@ class DefaultApi(object):
:param async bool
:param str id: (required)
:param str expand: List of sub-entities to expand in response. For creators, none accepted (yet).
+ :param str hide: List of entity fields to elide in response. For containers, none accepted (yet).
:return: CreatorEntity
If the method is called asynchronously,
returns the request thread.
@@ -2195,12 +2200,13 @@ class DefaultApi(object):
:param async bool
:param str id: (required)
:param str expand: List of sub-entities to expand in response. For creators, none accepted (yet).
+ :param str hide: List of entity fields to elide in response. For containers, none accepted (yet).
:return: CreatorEntity
If the method is called asynchronously,
returns the request thread.
"""
- all_params = ['id', 'expand'] # noqa: E501
+ all_params = ['id', 'expand', 'hide'] # noqa: E501
all_params.append('async')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
@@ -2229,6 +2235,8 @@ class DefaultApi(object):
query_params = []
if 'expand' in params:
query_params.append(('expand', params['expand'])) # noqa: E501
+ if 'hide' in params:
+ query_params.append(('hide', params['hide'])) # noqa: E501
header_params = {}
@@ -2374,6 +2382,7 @@ class DefaultApi(object):
:param async bool
:param str id: (required)
+ :param str hide: List of entity fields to elide in response. For releases, 'abstracts', 'refs', and 'contribs' are valid.
:return: list[ReleaseEntity]
If the method is called asynchronously,
returns the request thread.
@@ -2395,12 +2404,13 @@ class DefaultApi(object):
:param async bool
:param str id: (required)
+ :param str hide: List of entity fields to elide in response. For releases, 'abstracts', 'refs', and 'contribs' are valid.
:return: list[ReleaseEntity]
If the method is called asynchronously,
returns the request thread.
"""
- all_params = ['id'] # noqa: E501
+ all_params = ['id', 'hide'] # noqa: E501
all_params.append('async')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
@@ -2427,6 +2437,8 @@ class DefaultApi(object):
path_params['id'] = params['id'] # noqa: E501
query_params = []
+ if 'hide' in params:
+ query_params.append(('hide', params['hide'])) # noqa: E501
header_params = {}
@@ -2771,6 +2783,7 @@ class DefaultApi(object):
:param async bool
:param str id: (required)
:param str expand: List of sub-entities to expand in response. For files, none accepted (yet).
+ :param str hide: List of entity fields to elide in response. For files, none accepted (yet).
:return: FileEntity
If the method is called asynchronously,
returns the request thread.
@@ -2793,12 +2806,13 @@ class DefaultApi(object):
:param async bool
:param str id: (required)
:param str expand: List of sub-entities to expand in response. For files, none accepted (yet).
+ :param str hide: List of entity fields to elide in response. For files, none accepted (yet).
:return: FileEntity
If the method is called asynchronously,
returns the request thread.
"""
- all_params = ['id', 'expand'] # noqa: E501
+ all_params = ['id', 'expand', 'hide'] # noqa: E501
all_params.append('async')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
@@ -2827,6 +2841,8 @@ class DefaultApi(object):
query_params = []
if 'expand' in params:
query_params.append(('expand', params['expand'])) # noqa: E501
+ if 'hide' in params:
+ query_params.append(('hide', params['hide'])) # noqa: E501
header_params = {}
@@ -2973,6 +2989,7 @@ class DefaultApi(object):
:param async bool
:param str id: (required)
:param str expand: List of sub-entities to expand in response. For releases, 'files' and 'container' are valid.
+ :param str hide: List of entity fields to elide in response. For releases, 'abstracts', 'refs', and 'contribs' are valid.
:return: ReleaseEntity
If the method is called asynchronously,
returns the request thread.
@@ -2995,12 +3012,13 @@ class DefaultApi(object):
:param async bool
:param str id: (required)
:param str expand: List of sub-entities to expand in response. For releases, 'files' and 'container' are valid.
+ :param str hide: List of entity fields to elide in response. For releases, 'abstracts', 'refs', and 'contribs' are valid.
:return: ReleaseEntity
If the method is called asynchronously,
returns the request thread.
"""
- all_params = ['id', 'expand'] # noqa: E501
+ all_params = ['id', 'expand', 'hide'] # noqa: E501
all_params.append('async')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
@@ -3029,6 +3047,8 @@ class DefaultApi(object):
query_params = []
if 'expand' in params:
query_params.append(('expand', params['expand'])) # noqa: E501
+ if 'hide' in params:
+ query_params.append(('hide', params['hide'])) # noqa: E501
header_params = {}
@@ -3073,6 +3093,7 @@ class DefaultApi(object):
:param async bool
:param str id: (required)
+ :param str hide: List of entity fields to elide in response. For files, none accepted (yet).
:return: list[FileEntity]
If the method is called asynchronously,
returns the request thread.
@@ -3094,12 +3115,13 @@ class DefaultApi(object):
:param async bool
:param str id: (required)
+ :param str hide: List of entity fields to elide in response. For files, none accepted (yet).
:return: list[FileEntity]
If the method is called asynchronously,
returns the request thread.
"""
- all_params = ['id'] # noqa: E501
+ all_params = ['id', 'hide'] # noqa: E501
all_params.append('async')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
@@ -3126,6 +3148,8 @@ class DefaultApi(object):
path_params['id'] = params['id'] # noqa: E501
query_params = []
+ if 'hide' in params:
+ query_params.append(('hide', params['hide'])) # noqa: E501
header_params = {}
@@ -3365,6 +3389,7 @@ class DefaultApi(object):
:param async bool
:param str id: (required)
:param str expand: List of sub-entities to expand in response. For works, none accepted (yet).
+ :param str hide: List of entity fields to elide in response. For works, none accepted (yet).
:return: WorkEntity
If the method is called asynchronously,
returns the request thread.
@@ -3387,12 +3412,13 @@ class DefaultApi(object):
:param async bool
:param str id: (required)
:param str expand: List of sub-entities to expand in response. For works, none accepted (yet).
+ :param str hide: List of entity fields to elide in response. For works, none accepted (yet).
:return: WorkEntity
If the method is called asynchronously,
returns the request thread.
"""
- all_params = ['id', 'expand'] # noqa: E501
+ all_params = ['id', 'expand', 'hide'] # noqa: E501
all_params.append('async')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
@@ -3421,6 +3447,8 @@ class DefaultApi(object):
query_params = []
if 'expand' in params:
query_params.append(('expand', params['expand'])) # noqa: E501
+ if 'hide' in params:
+ query_params.append(('hide', params['hide'])) # noqa: E501
header_params = {}
@@ -3566,6 +3594,7 @@ class DefaultApi(object):
:param async bool
:param str id: (required)
+ :param str hide: List of entity fields to elide in response. For releases, 'abstracts', 'refs', and 'contribs' are valid.
:return: list[ReleaseEntity]
If the method is called asynchronously,
returns the request thread.
@@ -3587,12 +3616,13 @@ class DefaultApi(object):
:param async bool
:param str id: (required)
+ :param str hide: List of entity fields to elide in response. For releases, 'abstracts', 'refs', and 'contribs' are valid.
:return: list[ReleaseEntity]
If the method is called asynchronously,
returns the request thread.
"""
- all_params = ['id'] # noqa: E501
+ all_params = ['id', 'hide'] # noqa: E501
all_params.append('async')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
@@ -3619,6 +3649,8 @@ class DefaultApi(object):
path_params['id'] = params['id'] # noqa: E501
query_params = []
+ if 'hide' in params:
+ query_params.append(('hide', params['hide'])) # noqa: E501
header_params = {}
@@ -3663,6 +3695,7 @@ class DefaultApi(object):
:param async bool
:param str issnl: (required)
+ :param str hide: List of entity fields to elide in response. For container, none accepted (yet).
:return: ContainerEntity
If the method is called asynchronously,
returns the request thread.
@@ -3684,12 +3717,13 @@ class DefaultApi(object):
:param async bool
:param str issnl: (required)
+ :param str hide: List of entity fields to elide in response. For container, none accepted (yet).
:return: ContainerEntity
If the method is called asynchronously,
returns the request thread.
"""
- all_params = ['issnl'] # noqa: E501
+ all_params = ['issnl', 'hide'] # noqa: E501
all_params.append('async')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
@@ -3724,6 +3758,8 @@ class DefaultApi(object):
query_params = []
if 'issnl' in params:
query_params.append(('issnl', params['issnl'])) # noqa: E501
+ if 'hide' in params:
+ query_params.append(('hide', params['hide'])) # noqa: E501
header_params = {}
@@ -3768,6 +3804,7 @@ class DefaultApi(object):
:param async bool
:param str orcid: (required)
+ :param str hide: List of entity fields to elide in response. For creator, none accepted (yet).
:return: CreatorEntity
If the method is called asynchronously,
returns the request thread.
@@ -3789,12 +3826,13 @@ class DefaultApi(object):
:param async bool
:param str orcid: (required)
+ :param str hide: List of entity fields to elide in response. For creator, none accepted (yet).
:return: CreatorEntity
If the method is called asynchronously,
returns the request thread.
"""
- all_params = ['orcid'] # noqa: E501
+ all_params = ['orcid', 'hide'] # noqa: E501
all_params.append('async')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
@@ -3829,6 +3867,8 @@ class DefaultApi(object):
query_params = []
if 'orcid' in params:
query_params.append(('orcid', params['orcid'])) # noqa: E501
+ if 'hide' in params:
+ query_params.append(('hide', params['hide'])) # noqa: E501
header_params = {}
@@ -3873,6 +3913,7 @@ class DefaultApi(object):
:param async bool
:param str sha1: (required)
+ :param str hide: List of entity fields to elide in response. For files, none accepted (yet).
:return: FileEntity
If the method is called asynchronously,
returns the request thread.
@@ -3894,12 +3935,13 @@ class DefaultApi(object):
:param async bool
:param str sha1: (required)
+ :param str hide: List of entity fields to elide in response. For files, none accepted (yet).
:return: FileEntity
If the method is called asynchronously,
returns the request thread.
"""
- all_params = ['sha1'] # noqa: E501
+ all_params = ['sha1', 'hide'] # noqa: E501
all_params.append('async')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
@@ -3926,6 +3968,8 @@ class DefaultApi(object):
query_params = []
if 'sha1' in params:
query_params.append(('sha1', params['sha1'])) # noqa: E501
+ if 'hide' in params:
+ query_params.append(('hide', params['hide'])) # noqa: E501
header_params = {}
@@ -3970,6 +4014,7 @@ class DefaultApi(object):
:param async bool
:param str doi: (required)
+ :param str hide: List of entity fields to elide in response. For releases, 'abstracts', 'refs', and 'contribs' are valid.
:return: ReleaseEntity
If the method is called asynchronously,
returns the request thread.
@@ -3991,12 +4036,13 @@ class DefaultApi(object):
:param async bool
:param str doi: (required)
+ :param str hide: List of entity fields to elide in response. For releases, 'abstracts', 'refs', and 'contribs' are valid.
:return: ReleaseEntity
If the method is called asynchronously,
returns the request thread.
"""
- all_params = ['doi'] # noqa: E501
+ all_params = ['doi', 'hide'] # noqa: E501
all_params.append('async')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
@@ -4023,6 +4069,8 @@ class DefaultApi(object):
query_params = []
if 'doi' in params:
query_params.append(('doi', params['doi'])) # noqa: E501
+ if 'hide' in params:
+ query_params.append(('hide', params['hide'])) # noqa: E501
header_params = {}