Product
Properties
Name |
Type |
Description |
Notes |
id |
int |
|
[readonly] |
team |
int |
|
|
category |
int |
|
[optional] |
inspections |
List[int] |
|
[optional] |
created_at |
datetime |
|
[readonly] |
updated_at |
datetime |
|
[readonly] |
identifier |
str |
|
|
display_name |
str |
|
[optional] |
description |
str |
|
[optional] |
Example
from avis_client.models.product import Product
# TODO update the JSON string below
json = "{}"
# create an instance of Product from a JSON string
product_instance = Product.from_json(json)
# print the JSON string representation of the object
print Product.to_json()
# convert the object into a dict
product_dict = product_instance.to_dict()
# create an instance of Product from a dict
product_form_dict = product.from_dict(product_dict)
[Back to Model list] [Back to API list] [Back to README]