Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1017 Bytes

File metadata and controls

29 lines (21 loc) · 1017 Bytes

ActionObj

Properties

Name Type Description Notes
action str The action to apply [optional]
value List[str] Only applicable to provisioned and set_* actions. Items in the array will be a plain text string or valid value for the selected action. [optional]

Example

from onelogin.models.action_obj import ActionObj

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

# convert the object into a dict
action_obj_dict = action_obj_instance.to_dict()
# create an instance of ActionObj from a dict
action_obj_form_dict = action_obj.from_dict(action_obj_dict)

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