Skip to content
This repository was archived by the owner on Aug 1, 2025. It is now read-only.

Latest commit

 

History

History
33 lines (24 loc) · 1.02 KB

File metadata and controls

33 lines (24 loc) · 1.02 KB

BlendRequest

Properties

Name Type Description Notes
alpha float [optional]
image1 str
image2 str
mode str [optional] [default to 'rts']
target_format str [optional] [default to 'jpeg']

Example

from imager200_python_sdk.models.blend_request import BlendRequest

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

# convert the object into a dict
blend_request_dict = blend_request_instance.to_dict()
# create an instance of BlendRequest from a dict
blend_request_from_dict = BlendRequest.from_dict(blend_request_dict)

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