Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ MergeATSClient/api/applications_api.py
MergeATSClient/api/attachments_api.py
MergeATSClient/api/available_actions_api.py
MergeATSClient/api/candidates_api.py
MergeATSClient/api/delete_account_api.py
MergeATSClient/api/departments_api.py
MergeATSClient/api/eeocs_api.py
MergeATSClient/api/generate_key_api.py
MergeATSClient/api/interviews_api.py
MergeATSClient/api/issues_api.py
MergeATSClient/api/job_interview_stages_api.py
MergeATSClient/api/jobs_api.py
MergeATSClient/api/link_token_api.py
Expand Down Expand Up @@ -53,6 +55,8 @@ MergeATSClient/model/email_address_type_enum.py
MergeATSClient/model/end_user_details_request.py
MergeATSClient/model/gender_enum.py
MergeATSClient/model/generate_remote_key_request.py
MergeATSClient/model/issue.py
MergeATSClient/model/issue_status_enum.py
MergeATSClient/model/job.py
MergeATSClient/model/job_interview_stage.py
MergeATSClient/model/job_status_enum.py
Expand All @@ -69,6 +73,7 @@ MergeATSClient/model/paginated_attachment_list.py
MergeATSClient/model/paginated_candidate_list.py
MergeATSClient/model/paginated_department_list.py
MergeATSClient/model/paginated_eeoc_list.py
MergeATSClient/model/paginated_issue_list.py
MergeATSClient/model/paginated_job_interview_stage_list.py
MergeATSClient/model/paginated_job_list.py
MergeATSClient/model/paginated_offer_list.py
Expand Down Expand Up @@ -128,6 +133,7 @@ docs/Candidate.md
docs/CandidateRequest.md
docs/CandidatesApi.md
docs/DataPassthroughRequest.md
docs/DeleteAccountApi.md
docs/Department.md
docs/DepartmentsApi.md
docs/DisabilityStatusEnum.md
Expand All @@ -141,6 +147,9 @@ docs/GenderEnum.md
docs/GenerateKeyApi.md
docs/GenerateRemoteKeyRequest.md
docs/InterviewsApi.md
docs/Issue.md
docs/IssueStatusEnum.md
docs/IssuesApi.md
docs/Job.md
docs/JobInterviewStage.md
docs/JobInterviewStagesApi.md
Expand All @@ -162,6 +171,7 @@ docs/PaginatedAttachmentList.md
docs/PaginatedCandidateList.md
docs/PaginatedDepartmentList.md
docs/PaginatedEEOCList.md
docs/PaginatedIssueList.md
docs/PaginatedJobInterviewStageList.md
docs/PaginatedJobList.md
docs/PaginatedOfferList.md
Expand Down
8 changes: 2 additions & 6 deletions MergeATSClient/api/applications_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ def __init__(self, api_client=None):
def __applications_create(
self,
x_account_token,
remote_user_id,
**kwargs
):
"""applications_create # noqa: E501
Expand All @@ -51,14 +50,14 @@ def __applications_create(
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True

>>> thread = api.applications_create(x_account_token, remote_user_id, async_req=True)
>>> thread = api.applications_create(x_account_token, async_req=True)
>>> result = thread.get()

Args:
x_account_token (str): Token identifying the end user.
remote_user_id (str): The ID of the RemoteUser deleting the resource. This can be found in the ID field (not remote_id) in the RemoteUser table.

Keyword Args:
remote_user_id (str): The ID of the RemoteUser modifying the resource. This can be found in the ID field (not remote_id) in the RemoteUser table.. [optional]
run_async (bool): Whether or not third-party updates should be run asynchronously.. [optional]
application_request (ApplicationRequest): [optional]
_return_http_data_only (bool): response data without head status
Expand Down Expand Up @@ -107,8 +106,6 @@ def __applications_create(
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['x_account_token'] = \
x_account_token
kwargs['remote_user_id'] = \
remote_user_id
return self.call_with_http_info(**kwargs)

self.applications_create = _Endpoint(
Expand All @@ -131,7 +128,6 @@ def __applications_create(
],
'required': [
'x_account_token',
'remote_user_id',
],
'nullable': [
],
Expand Down
8 changes: 2 additions & 6 deletions MergeATSClient/api/attachments_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ def __init__(self, api_client=None):
def __attachments_create(
self,
x_account_token,
remote_user_id,
**kwargs
):
"""attachments_create # noqa: E501
Expand All @@ -51,14 +50,14 @@ def __attachments_create(
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True

>>> thread = api.attachments_create(x_account_token, remote_user_id, async_req=True)
>>> thread = api.attachments_create(x_account_token, async_req=True)
>>> result = thread.get()

Args:
x_account_token (str): Token identifying the end user.
remote_user_id (str): The ID of the RemoteUser deleting the resource. This can be found in the ID field (not remote_id) in the RemoteUser table.

Keyword Args:
remote_user_id (str): The ID of the RemoteUser modifying the resource. This can be found in the ID field (not remote_id) in the RemoteUser table.. [optional]
run_async (bool): Whether or not third-party updates should be run asynchronously.. [optional]
attachment_request (AttachmentRequest): [optional]
_return_http_data_only (bool): response data without head status
Expand Down Expand Up @@ -107,8 +106,6 @@ def __attachments_create(
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['x_account_token'] = \
x_account_token
kwargs['remote_user_id'] = \
remote_user_id
return self.call_with_http_info(**kwargs)

self.attachments_create = _Endpoint(
Expand All @@ -131,7 +128,6 @@ def __attachments_create(
],
'required': [
'x_account_token',
'remote_user_id',
],
'nullable': [
],
Expand Down
8 changes: 2 additions & 6 deletions MergeATSClient/api/candidates_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ def __init__(self, api_client=None):
def __candidates_create(
self,
x_account_token,
remote_user_id,
**kwargs
):
"""candidates_create # noqa: E501
Expand All @@ -51,14 +50,14 @@ def __candidates_create(
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True

>>> thread = api.candidates_create(x_account_token, remote_user_id, async_req=True)
>>> thread = api.candidates_create(x_account_token, async_req=True)
>>> result = thread.get()

Args:
x_account_token (str): Token identifying the end user.
remote_user_id (str): The ID of the RemoteUser deleting the resource. This can be found in the ID field (not remote_id) in the RemoteUser table.

Keyword Args:
remote_user_id (str): The ID of the RemoteUser modifying the resource. This can be found in the ID field (not remote_id) in the RemoteUser table.. [optional]
run_async (bool): Whether or not third-party updates should be run asynchronously.. [optional]
candidate_request (CandidateRequest): [optional]
_return_http_data_only (bool): response data without head status
Expand Down Expand Up @@ -107,8 +106,6 @@ def __candidates_create(
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['x_account_token'] = \
x_account_token
kwargs['remote_user_id'] = \
remote_user_id
return self.call_with_http_info(**kwargs)

self.candidates_create = _Endpoint(
Expand All @@ -131,7 +128,6 @@ def __candidates_create(
],
'required': [
'x_account_token',
'remote_user_id',
],
'nullable': [
],
Expand Down
8 changes: 2 additions & 6 deletions MergeATSClient/api/interviews_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ def __init__(self, api_client=None):
def __interviews_create(
self,
x_account_token,
remote_user_id,
**kwargs
):
"""interviews_create # noqa: E501
Expand All @@ -51,14 +50,14 @@ def __interviews_create(
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True

>>> thread = api.interviews_create(x_account_token, remote_user_id, async_req=True)
>>> thread = api.interviews_create(x_account_token, async_req=True)
>>> result = thread.get()

Args:
x_account_token (str): Token identifying the end user.
remote_user_id (str): The ID of the RemoteUser deleting the resource. This can be found in the ID field (not remote_id) in the RemoteUser table.

Keyword Args:
remote_user_id (str): The ID of the RemoteUser modifying the resource. This can be found in the ID field (not remote_id) in the RemoteUser table.. [optional]
run_async (bool): Whether or not third-party updates should be run asynchronously.. [optional]
scheduled_interview_request (ScheduledInterviewRequest): [optional]
_return_http_data_only (bool): response data without head status
Expand Down Expand Up @@ -107,8 +106,6 @@ def __interviews_create(
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['x_account_token'] = \
x_account_token
kwargs['remote_user_id'] = \
remote_user_id
return self.call_with_http_info(**kwargs)

self.interviews_create = _Endpoint(
Expand All @@ -131,7 +128,6 @@ def __interviews_create(
],
'required': [
'x_account_token',
'remote_user_id',
],
'nullable': [
],
Expand Down
8 changes: 2 additions & 6 deletions MergeATSClient/api/scorecards_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ def __init__(self, api_client=None):
def __scorecards_create(
self,
x_account_token,
remote_user_id,
**kwargs
):
"""scorecards_create # noqa: E501
Expand All @@ -51,14 +50,14 @@ def __scorecards_create(
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True

>>> thread = api.scorecards_create(x_account_token, remote_user_id, async_req=True)
>>> thread = api.scorecards_create(x_account_token, async_req=True)
>>> result = thread.get()

Args:
x_account_token (str): Token identifying the end user.
remote_user_id (str): The ID of the RemoteUser deleting the resource. This can be found in the ID field (not remote_id) in the RemoteUser table.

Keyword Args:
remote_user_id (str): The ID of the RemoteUser modifying the resource. This can be found in the ID field (not remote_id) in the RemoteUser table.. [optional]
run_async (bool): Whether or not third-party updates should be run asynchronously.. [optional]
scorecard_request (ScorecardRequest): [optional]
_return_http_data_only (bool): response data without head status
Expand Down Expand Up @@ -107,8 +106,6 @@ def __scorecards_create(
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['x_account_token'] = \
x_account_token
kwargs['remote_user_id'] = \
remote_user_id
return self.call_with_http_info(**kwargs)

self.scorecards_create = _Endpoint(
Expand All @@ -131,7 +128,6 @@ def __scorecards_create(
],
'required': [
'x_account_token',
'remote_user_id',
],
'nullable': [
],
Expand Down
8 changes: 2 additions & 6 deletions MergeATSClient/api/users_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ def __init__(self, api_client=None):
def __users_create(
self,
x_account_token,
remote_user_id,
**kwargs
):
"""users_create # noqa: E501
Expand All @@ -51,14 +50,14 @@ def __users_create(
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True

>>> thread = api.users_create(x_account_token, remote_user_id, async_req=True)
>>> thread = api.users_create(x_account_token, async_req=True)
>>> result = thread.get()

Args:
x_account_token (str): Token identifying the end user.
remote_user_id (str): The ID of the RemoteUser deleting the resource. This can be found in the ID field (not remote_id) in the RemoteUser table.

Keyword Args:
remote_user_id (str): The ID of the RemoteUser modifying the resource. This can be found in the ID field (not remote_id) in the RemoteUser table.. [optional]
run_async (bool): Whether or not third-party updates should be run asynchronously.. [optional]
remote_user_request (RemoteUserRequest): [optional]
_return_http_data_only (bool): response data without head status
Expand Down Expand Up @@ -107,8 +106,6 @@ def __users_create(
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['x_account_token'] = \
x_account_token
kwargs['remote_user_id'] = \
remote_user_id
return self.call_with_http_info(**kwargs)

self.users_create = _Endpoint(
Expand All @@ -131,7 +128,6 @@ def __users_create(
],
'required': [
'x_account_token',
'remote_user_id',
],
'nullable': [
],
Expand Down
2 changes: 2 additions & 0 deletions MergeATSClient/apis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@
from MergeATSClient.api.attachments_api import AttachmentsApi
from MergeATSClient.api.available_actions_api import AvailableActionsApi
from MergeATSClient.api.candidates_api import CandidatesApi
from MergeATSClient.api.delete_account_api import DeleteAccountApi
from MergeATSClient.api.departments_api import DepartmentsApi
from MergeATSClient.api.eeocs_api import EeocsApi
from MergeATSClient.api.generate_key_api import GenerateKeyApi
from MergeATSClient.api.interviews_api import InterviewsApi
from MergeATSClient.api.issues_api import IssuesApi
from MergeATSClient.api.job_interview_stages_api import JobInterviewStagesApi
from MergeATSClient.api.jobs_api import JobsApi
from MergeATSClient.api.link_token_api import LinkTokenApi
Expand Down
6 changes: 3 additions & 3 deletions MergeATSClient/model/candidate.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,9 @@ def __init__(self, *args, **kwargs): # noqa: E501
phone_numbers ([PhoneNumber]): [optional] # noqa: E501
email_addresses ([EmailAddress]): [optional] # noqa: E501
urls ([Url]): [optional] # noqa: E501
tags ([str]): [optional] # noqa: E501
applications ([str]): [optional] # noqa: E501
attachments ([str]): [optional] # noqa: E501
tags ([str]): Array of `Tag` names as strings.. [optional] # noqa: E501
applications ([str]): Array of `Application` object IDs.. [optional] # noqa: E501
attachments ([str]): Array of `Attachment` object IDs.. [optional] # noqa: E501
remote_data ([RemoteData], none_type): [optional] # noqa: E501
"""

Expand Down
6 changes: 3 additions & 3 deletions MergeATSClient/model/candidate_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,9 @@ def __init__(self, *args, **kwargs): # noqa: E501
phone_numbers ([PhoneNumberRequest]): [optional] # noqa: E501
email_addresses ([EmailAddressRequest]): [optional] # noqa: E501
urls ([UrlRequest]): [optional] # noqa: E501
tags ([str]): [optional] # noqa: E501
applications ([str]): [optional] # noqa: E501
attachments ([str]): [optional] # noqa: E501
tags ([str]): Array of `Tag` names as strings.. [optional] # noqa: E501
applications ([str]): Array of `Application` object IDs.. [optional] # noqa: E501
attachments ([str]): Array of `Attachment` object IDs.. [optional] # noqa: E501
"""

_check_type = kwargs.pop('_check_type', True)
Expand Down
6 changes: 3 additions & 3 deletions MergeATSClient/model/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,9 @@ def __init__(self, *args, **kwargs): # noqa: E501
remote_created_at (datetime, none_type): When the third party's job was created.. [optional] # noqa: E501
remote_updated_at (datetime, none_type): When the third party's job was updated.. [optional] # noqa: E501
confidential (bool, none_type): Whether the job is confidential.. [optional] # noqa: E501
departments ([str]): [optional] # noqa: E501
offices ([str]): [optional] # noqa: E501
hiring_managers ([str]): [optional] # noqa: E501
departments ([str]): IDs of `Department` objects for this `Job`.. [optional] # noqa: E501
offices ([str]): IDs of `Office` objects for this `Job`.. [optional] # noqa: E501
hiring_managers ([str]): IDs of `RemoteUser` objects that serve as hiring managers for this `Job`.. [optional] # noqa: E501
remote_data ([RemoteData], none_type): [optional] # noqa: E501
"""

Expand Down
2 changes: 1 addition & 1 deletion MergeATSClient/model/scheduled_interview.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
application (str, none_type): The application being interviewed.. [optional] # noqa: E501
job_interview_stage (str, none_type): The stage of the interview.. [optional] # noqa: E501
organizer (str, none_type): The user organizing the interview.. [optional] # noqa: E501
interviewers ([str]): [optional] # noqa: E501
interviewers ([str]): Array of `RemoteUser` IDs.. [optional] # noqa: E501
location (str, none_type): The interview's location.. [optional] # noqa: E501
start_at (datetime, none_type): When the interview was started.. [optional] # noqa: E501
end_at (datetime, none_type): When the interview was ended.. [optional] # noqa: E501
Expand Down
2 changes: 1 addition & 1 deletion MergeATSClient/model/scheduled_interview_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
application (str, none_type): The application being interviewed.. [optional] # noqa: E501
job_interview_stage (str, none_type): The stage of the interview.. [optional] # noqa: E501
organizer (str, none_type): The user organizing the interview.. [optional] # noqa: E501
interviewers ([str]): [optional] # noqa: E501
interviewers ([str]): Array of `RemoteUser` IDs.. [optional] # noqa: E501
location (str, none_type): The interview's location.. [optional] # noqa: E501
start_at (datetime, none_type): When the interview was started.. [optional] # noqa: E501
end_at (datetime, none_type): When the interview was ended.. [optional] # noqa: E501
Expand Down
3 changes: 3 additions & 0 deletions MergeATSClient/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
from MergeATSClient.model.end_user_details_request import EndUserDetailsRequest
from MergeATSClient.model.gender_enum import GenderEnum
from MergeATSClient.model.generate_remote_key_request import GenerateRemoteKeyRequest
from MergeATSClient.model.issue import Issue
from MergeATSClient.model.issue_status_enum import IssueStatusEnum
from MergeATSClient.model.job import Job
from MergeATSClient.model.job_interview_stage import JobInterviewStage
from MergeATSClient.model.job_status_enum import JobStatusEnum
Expand All @@ -48,6 +50,7 @@
from MergeATSClient.model.paginated_candidate_list import PaginatedCandidateList
from MergeATSClient.model.paginated_department_list import PaginatedDepartmentList
from MergeATSClient.model.paginated_eeoc_list import PaginatedEEOCList
from MergeATSClient.model.paginated_issue_list import PaginatedIssueList
from MergeATSClient.model.paginated_job_interview_stage_list import PaginatedJobInterviewStageList
from MergeATSClient.model.paginated_job_list import PaginatedJobList
from MergeATSClient.model.paginated_offer_list import PaginatedOfferList
Expand Down
Loading