Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 998 Bytes

File metadata and controls

29 lines (20 loc) · 998 Bytes

MemberTeamsPostInput

Properties

Name Type Description Notes
team_keys List[str] List of team keys

Example

from launchdarkly_api.models.member_teams_post_input import MemberTeamsPostInput

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

# convert the object into a dict
member_teams_post_input_dict = member_teams_post_input_instance.to_dict()
# create an instance of MemberTeamsPostInput from a dict
member_teams_post_input_from_dict = MemberTeamsPostInput.from_dict(member_teams_post_input_dict)

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