Skip to content

Commit

Permalink
feat: Get Strings Exporter Settings Implemented
Browse files Browse the repository at this point in the history
Signed-off-by: OmAxiani0 <[email protected]>
  • Loading branch information
OmAximani0 committed Sep 14, 2023
1 parent 22787cc commit 52c5fc0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions crowdin_api/api_resources/projects/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,3 +426,20 @@ def add_project_strings_exporter(
path=self.get_strings_exporter_path(projectId=projectId),
request_data={"format": format, "settings": settings},
)

def get_project_strings_exporter(
self, projectId: int, systemStringsExporterSettingId: int
):
"""
Get Project Strings Exporter Settings
Link to documetation:
https://developer.crowdin.com/api/v2/#operation/api.projects.strings-exporter-settings.get
"""
return self.requester.request(
method="get",
path=self.get_strings_exporter_path(
projectId=projectId,
systemStringExporterSettingId=systemStringsExporterSettingId,
),
)

0 comments on commit 52c5fc0

Please sign in to comment.