Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

File metadata and controls

32 lines (23 loc) · 1.08 KB

SyncObjectRequest

Sync object serializer

Properties

Name Type Description Notes
sync_object_model SyncObjectModelEnum
sync_object_id str
override_dry_run bool [optional] [default to False]

Example

from authentik_client.models.sync_object_request import SyncObjectRequest

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

# convert the object into a dict
sync_object_request_dict = sync_object_request_instance.to_dict()
# create an instance of SyncObjectRequest from a dict
sync_object_request_from_dict = SyncObjectRequest.from_dict(sync_object_request_dict)

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