Name | Type | Description | Notes |
---|---|---|---|
is_enabled | bool | [optional] |
from freedompay_client.models.dcc_options import DccOptions
# TODO update the JSON string below
json = "{}"
# create an instance of DccOptions from a JSON string
dcc_options_instance = DccOptions.from_json(json)
# print the JSON string representation of the object
print DccOptions.to_json()
# convert the object into a dict
dcc_options_dict = dcc_options_instance.to_dict()
# create an instance of DccOptions from a dict
dcc_options_form_dict = dcc_options.from_dict(dcc_options_dict)