Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 987 Bytes

File metadata and controls

30 lines (21 loc) · 987 Bytes

CompilePayload

Properties

Name Type Description Notes
compile_stage CompileStage [optional]
backend_type_id int ID of the backendtype

Example

from compute_api_client.models.compile_payload import CompilePayload

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

# convert the object into a dict
compile_payload_dict = compile_payload_instance.to_dict()
# create an instance of CompilePayload from a dict
compile_payload_from_dict = CompilePayload.from_dict(compile_payload_dict)

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