Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.23 KB

File metadata and controls

32 lines (23 loc) · 1.23 KB

AddLocaleResourceSchemaItem

Properties

Name Type Description Notes
item_type LocaleResourceType
attribute_key str Attribute Key
allowed_value str Resource value
localized_value str Localized Value

Example

from formkiq_client.models.add_locale_resource_schema_item import AddLocaleResourceSchemaItem

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

# convert the object into a dict
add_locale_resource_schema_item_dict = add_locale_resource_schema_item_instance.to_dict()
# create an instance of AddLocaleResourceSchemaItem from a dict
add_locale_resource_schema_item_from_dict = AddLocaleResourceSchemaItem.from_dict(add_locale_resource_schema_item_dict)

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