Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

File metadata and controls

32 lines (23 loc) · 1.24 KB

ScimPatchOperation

Patch operation that is used to update the information.

Properties

Name Type Description Notes
op str The method that should be used in the operation.
path str The path specifying the attribute that should be updated. [optional]
value str The value that should be updated. Required if `op` is `add` or `replace`. [optional]

Example

from talon_one.models.scim_patch_operation import ScimPatchOperation

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

# convert the object into a dict
scim_patch_operation_dict = scim_patch_operation_instance.to_dict()
# create an instance of ScimPatchOperation from a dict
scim_patch_operation_from_dict = ScimPatchOperation.from_dict(scim_patch_operation_dict)

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