ConfigurationType
Properties
| Name |
Type |
Description |
Notes |
| id |
int |
|
[readonly] |
| team |
int |
|
|
| name |
str |
|
|
| metadata_schema |
int |
|
[optional] |
| quality_criteria |
int |
|
[optional] |
| product_category |
int |
|
[optional] |
| image_attribute_categories |
List[int] |
|
[optional] |
| created_at |
datetime |
|
[readonly] |
| updated_at |
datetime |
|
[readonly] |
| description |
str |
|
[optional] |
| is_default |
bool |
|
[optional] |
Example
from avis_client.models.configuration_type import ConfigurationType
# TODO update the JSON string below
json = "{}"
# create an instance of ConfigurationType from a JSON string
configuration_type_instance = ConfigurationType.from_json(json)
# print the JSON string representation of the object
print ConfigurationType.to_json()
# convert the object into a dict
configuration_type_dict = configuration_type_instance.to_dict()
# create an instance of ConfigurationType from a dict
configuration_type_form_dict = configuration_type.from_dict(configuration_type_dict)
[Back to Model list] [Back to API list] [Back to README]