This documentation is for an older version of GoodData.
Go to the latest version of this article.
catalog_workspace.
get_metadata_localization
get_metadata_localization(workspace_id: str, target_language: str) -> bytes
Retrieve the metadata localization for a workspace.
Parameters
| name | type | description |
|---|---|---|
| workspace_id | string | The ID of the workspace for which to retrieve the metadata localization. |
| target_language | string | The target language code for the localization. |
Returns
| type | description |
|---|---|
| bytes | Object Containing declarative Analytical Model. |
Example
# Retrieve metadata localization for a workspace in the specified language.
localization = sdk.catalog_workspace.get_metadata_localization(
workspace_id="123",
target_language="de-DE"
)