PatchedImageRequest
Properties
Name |
Type |
Description |
Notes |
team |
int |
|
[optional] |
inspection |
int |
|
[optional] |
uploaded_by |
int |
|
[optional] |
results |
List[int] |
|
[optional] |
format |
FormatEnum |
|
[optional] |
capture_datetime |
datetime |
|
[optional] |
file |
bytearray |
|
[optional] |
part_id |
str |
|
[optional] |
validation_status |
ValidationStatusEnum |
|
[optional] |
Example
from avis_client.models.patched_image_request import PatchedImageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedImageRequest from a JSON string
patched_image_request_instance = PatchedImageRequest.from_json(json)
# print the JSON string representation of the object
print PatchedImageRequest.to_json()
# convert the object into a dict
patched_image_request_dict = patched_image_request_instance.to_dict()
# create an instance of PatchedImageRequest from a dict
patched_image_request_form_dict = patched_image_request.from_dict(patched_image_request_dict)
[Back to Model list] [Back to API list] [Back to README]