Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 912 Bytes

File metadata and controls

29 lines (20 loc) · 912 Bytes

IdpStatusUpdate

Properties

Name Type Description Notes
enabled bool [optional]

Example

from instana_client.models.idp_status_update import IdpStatusUpdate

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

# convert the object into a dict
idp_status_update_dict = idp_status_update_instance.to_dict()
# create an instance of IdpStatusUpdate from a dict
idp_status_update_from_dict = IdpStatusUpdate.from_dict(idp_status_update_dict)

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