| Name | Type | Description | Notes |
|---|---|---|---|
| action | ProvisioningAction | [optional] | |
| conditions | ProvisioningConditions | [optional] | |
| groups | ProvisioningGroups | [optional] | |
| profile_master | bool | [optional] |
from okta.models.provisioning import Provisioning
# TODO update the JSON string below
json = "{}"
# create an instance of Provisioning from a JSON string
provisioning_instance = Provisioning.from_json(json)
# print the JSON string representation of the object
print(Provisioning.to_json())
# convert the object into a dict
provisioning_dict = provisioning_instance.to_dict()
# create an instance of Provisioning from a dict
provisioning_from_dict = Provisioning.from_dict(provisioning_dict)