Skip to content

PatchedProductRequest

Properties

Name Type Description Notes
team int [optional]
category int [optional]
inspections List[int] [optional]
identifier str [optional]
display_name str [optional]
description str [optional]

Example

from avis_client.models.patched_product_request import PatchedProductRequest

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

# convert the object into a dict
patched_product_request_dict = patched_product_request_instance.to_dict()
# create an instance of PatchedProductRequest from a dict
patched_product_request_form_dict = patched_product_request.from_dict(patched_product_request_dict)
[Back to Model list] [Back to API list] [Back to README]