Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

PatchUsersRequest

Properties

Name Type Description Notes
comment str Optional comment describing the change [optional]
instructions List[InstructionUserRequest] The instructions to perform when updating

Example

from launchdarkly_api.models.patch_users_request import PatchUsersRequest

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

# convert the object into a dict
patch_users_request_dict = patch_users_request_instance.to_dict()
# create an instance of PatchUsersRequest from a dict
patch_users_request_from_dict = PatchUsersRequest.from_dict(patch_users_request_dict)

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