WorkflowDeploymentConfig

Properties

NameTypeDescriptionNotes
metadataAPIResourceMeta
git_repo_namestrThe repository name.
git_repo_ownerstrThe repository owner.
git_repo_branchstrThe repository branch.
github_app_installationGithubAppInstallationThe Github App installation.[optional]
github_app_installation_idstrThe id of the Github App installation.

Example

from hatchet_sdk.clients.rest.models.workflow_deployment_config import WorkflowDeploymentConfig
 
# TODO update the JSON string below
json = "{}"
# create an instance of WorkflowDeploymentConfig from a JSON string
workflow_deployment_config_instance = WorkflowDeploymentConfig.from_json(json)
# print the JSON string representation of the object
print WorkflowDeploymentConfig.to_json()
 
# convert the object into a dict
workflow_deployment_config_dict = workflow_deployment_config_instance.to_dict()
# create an instance of WorkflowDeploymentConfig from a dict
workflow_deployment_config_form_dict = workflow_deployment_config.from_dict(workflow_deployment_config_dict)

[Back to Model list] [Back to API list] [Back to README]