Name |
Type |
Description |
Notes |
target_id |
int |
|
[optional] |
from akeyless.models.create_gitlab_target_output import CreateGitlabTargetOutput
# TODO update the JSON string below
json = "{}"
# create an instance of CreateGitlabTargetOutput from a JSON string
create_gitlab_target_output_instance = CreateGitlabTargetOutput.from_json(json)
# print the JSON string representation of the object
print(CreateGitlabTargetOutput.to_json())
# convert the object into a dict
create_gitlab_target_output_dict = create_gitlab_target_output_instance.to_dict()
# create an instance of CreateGitlabTargetOutput from a dict
create_gitlab_target_output_from_dict = CreateGitlabTargetOutput.from_dict(create_gitlab_target_output_dict)
[Back to Model list] [Back to API list] [Back to README]