DataStrategyInfo
Informações sobre uma estratégia de carregamento de dados.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Nome lógico/identificador da estratégia. | |
| description | str | Descrição textual da estratégia. |
Example
from pldpro_sdk.api_client.models.data_strategy_info import DataStrategyInfo
# TODO update the JSON string below
json = "{}"
# create an instance of DataStrategyInfo from a JSON string
data_strategy_info_instance = DataStrategyInfo.from_json(json)
# print the JSON string representation of the object
print(DataStrategyInfo.to_json())
# convert the object into a dict
data_strategy_info_dict = data_strategy_info_instance.to_dict()
# create an instance of DataStrategyInfo from a dict
data_strategy_info_from_dict = DataStrategyInfo.from_dict(data_strategy_info_dict)