Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.16 KB

File metadata and controls

31 lines (24 loc) · 1.16 KB

CreateUpdateRepository

Properties

Name Type Description Notes
fleet_uids List[str] [optional]
name str [optional]
project_uids List[str] [optional]

Example

from notehub_py.models.create_update_repository import CreateUpdateRepository

# TODO update the JSON string below
json = "{}"
# create an instance of CreateUpdateRepository from a JSON string
create_update_repository_instance = CreateUpdateRepository.from_json(json)
# print the JSON string representation of the object
print(CreateUpdateRepository.to_json())

# convert the object into a dict
create_update_repository_dict = create_update_repository_instance.to_dict()
# create an instance of CreateUpdateRepository from a dict
create_update_repository_from_dict = CreateUpdateRepository.from_dict(
    create_update_repository_dict
)

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