-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from huntflow/INT-562_create_SurveyTypeA_entity
[INT-562] - create SurveyTypeA entity
- Loading branch information
Showing
9 changed files
with
445 additions
and
574 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
from typing import Any, Dict, Optional | ||
|
||
from huntflow_api_client.entities.base import BaseEntity, ListEntityMixin | ||
from huntflow_api_client.models.response.applicant_response import ApplicantResponsesListResponse | ||
|
||
|
||
class ApplicantResponse(BaseEntity, ListEntityMixin): | ||
async def list( | ||
self, | ||
account_id: int, | ||
applicant_id: int, | ||
count: int = 30, | ||
next_page_cursor: Optional[str] = None, | ||
) -> ApplicantResponsesListResponse: | ||
""" | ||
API method reference: | ||
https://api.huntflow.ai/v2/docs#get-/accounts/-account_id-/applicants/-applicant_id-/responses | ||
:param account_id: Organization ID | ||
:param applicant_id: Applicant ID | ||
:param count: Number of items per page | ||
:param next_page_cursor: Next page cursor | ||
:return: List of applicant's responses from job sites | ||
""" | ||
path = f"/accounts/{account_id}/applicants/{applicant_id}/responses" | ||
params: Dict[str, Any] = {"count": count} | ||
if next_page_cursor: | ||
params["next_page_cursor"] = next_page_cursor | ||
response = await self._api.request("GET", path, params=params) | ||
return ApplicantResponsesListResponse.model_validate(response.json()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
from huntflow_api_client.entities.base import BaseEntity, GetEntityMixin, ListEntityMixin | ||
from huntflow_api_client.models.response.survey import ( | ||
SurveySchemasTypeAListResponse, | ||
SurveySchemaTypeAResponse, | ||
) | ||
|
||
|
||
class SurveyTypeA(BaseEntity, GetEntityMixin, ListEntityMixin): | ||
async def list( | ||
self, | ||
account_id: int, | ||
active: bool = True, | ||
) -> SurveySchemasTypeAListResponse: | ||
""" | ||
API method reference | ||
https://api.huntflow.ai/v2/docs#get-/accounts/-account_id-/surveys/type_a | ||
:param account_id: Organization ID | ||
:param active: Shows only active schemas | ||
:return: List of all applicant feedback forms in organization. | ||
""" | ||
params = {"active": active} | ||
response = await self._api.request( | ||
"GET", | ||
f"/accounts/{account_id}/surveys/type_a", | ||
params=params, | ||
) | ||
return SurveySchemasTypeAListResponse.model_validate(response.json()) | ||
|
||
async def get(self, account_id: int, survey_id: int) -> SurveySchemaTypeAResponse: | ||
""" | ||
API method reference | ||
https://api.huntflow.ai/v2/docs#get-/accounts/-account_id-/surveys/type_a/-survey_id- | ||
:param account_id: Organization ID | ||
:param survey_id: Survey ID | ||
:return: An applicant feedback forms in organization. | ||
""" | ||
response = await self._api.request( | ||
"GET", | ||
f"/accounts/{account_id}/surveys/type_a/{survey_id}", | ||
) | ||
return SurveySchemaTypeAResponse.model_validate(response.json()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
from datetime import datetime | ||
from typing import List, Optional | ||
|
||
from pydantic import BaseModel, Field | ||
|
||
|
||
class ApplicantResponseVacancy(BaseModel): | ||
id: int = Field(..., description="Vacancy ID") | ||
position: str = Field(..., description="The name of the vacancy (occupation)") | ||
|
||
|
||
class ApplicantResponseVacancyExternal(BaseModel): | ||
id: int = Field(..., description="Publication ID") | ||
foreign: str = Field(..., description="Foreign publication ID (from job site)") | ||
|
||
|
||
class ApplicantResponse(BaseModel): | ||
id: int = Field(..., description="Response ID") | ||
foreign: str = Field(..., description="Foreign response ID (from job site)") | ||
created: datetime | ||
applicant_external: int = Field(..., description="Resume ID") | ||
vacancy: ApplicantResponseVacancy = Field(..., description="Vacancy") | ||
vacancy_external: ApplicantResponseVacancyExternal = Field( | ||
..., | ||
description="Publication of a vacancy for which an applicant responded", | ||
) | ||
|
||
|
||
class ApplicantResponsesListResponse(BaseModel): | ||
items: List[ApplicantResponse] = Field(..., description="List of applicant's responses") | ||
next_page_cursor: Optional[str] = Field(None, description="Next page cursor") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.