| Name | Type | Description | Notes |
|---|---|---|---|
| required | RequiredEnum | [optional] | |
| style | str | [optional] |
from okta.models.channel_binding import ChannelBinding
# TODO update the JSON string below
json = "{}"
# create an instance of ChannelBinding from a JSON string
channel_binding_instance = ChannelBinding.from_json(json)
# print the JSON string representation of the object
print(ChannelBinding.to_json())
# convert the object into a dict
channel_binding_dict = channel_binding_instance.to_dict()
# create an instance of ChannelBinding from a dict
channel_binding_from_dict = ChannelBinding.from_dict(channel_binding_dict)