Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 948 Bytes

File metadata and controls

30 lines (21 loc) · 948 Bytes

ChannelBinding

Properties

Name Type Description Notes
required RequiredEnum [optional]
style str [optional]

Example

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)

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