Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.22 KB

File metadata and controls

31 lines (22 loc) · 1.22 KB

AddLocaleResourceInterfaceItem

Properties

Name Type Description Notes
item_type LocaleResourceType
localized_value str Localized Value
interface_key str Interface Key

Example

from formkiq_client.models.add_locale_resource_interface_item import AddLocaleResourceInterfaceItem

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

# convert the object into a dict
add_locale_resource_interface_item_dict = add_locale_resource_interface_item_instance.to_dict()
# create an instance of AddLocaleResourceInterfaceItem from a dict
add_locale_resource_interface_item_from_dict = AddLocaleResourceInterfaceItem.from_dict(add_locale_resource_interface_item_dict)

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