CreateMilestoneOption options for creating a milestone
Name | Type | Description | Notes |
---|---|---|---|
description | str | [optional] | |
due_on | datetime | [optional] | |
state | str | [optional] | |
title | str | [optional] |
from clientapi_forgejo.models.create_milestone_option import CreateMilestoneOption
# TODO update the JSON string below
json = "{}"
# create an instance of CreateMilestoneOption from a JSON string
create_milestone_option_instance = CreateMilestoneOption.from_json(json)
# print the JSON string representation of the object
print(CreateMilestoneOption.to_json())
# convert the object into a dict
create_milestone_option_dict = create_milestone_option_instance.to_dict()
# create an instance of CreateMilestoneOption from a dict
create_milestone_option_from_dict = CreateMilestoneOption.from_dict(create_milestone_option_dict)