Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1004 Bytes

File metadata and controls

30 lines (21 loc) · 1004 Bytes

TeamsPatchInput

Properties

Name Type Description Notes
comment str Optional comment describing the update [optional]
instructions List[Dict[str, object]]

Example

from launchdarkly_api.models.teams_patch_input import TeamsPatchInput

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

# convert the object into a dict
teams_patch_input_dict = teams_patch_input_instance.to_dict()
# create an instance of TeamsPatchInput from a dict
teams_patch_input_from_dict = TeamsPatchInput.from_dict(teams_patch_input_dict)

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