Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.35 KB

SetEffectsEntryType.md

File metadata and controls

32 lines (23 loc) · 1.35 KB

SetEffectsEntryType

Properties

Name Type Description Notes
name str [optional]
id int [optional]
is_meta bool true if a type is generated from the Api instead of Ankama. In that case, always prefer showing the templated string and omit everything else. The "name" field will have an english description of the meta type. An example for such effects are class sets effects. [optional]
is_active bool Affects target or source actively. [optional]

Example

from dofusdude.models.set_effects_entry_type import SetEffectsEntryType

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

# convert the object into a dict
set_effects_entry_type_dict = set_effects_entry_type_instance.to_dict()
# create an instance of SetEffectsEntryType from a dict
set_effects_entry_type_from_dict = SetEffectsEntryType.from_dict(set_effects_entry_type_dict)

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