Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 954 Bytes

CompilePayload.md

File metadata and controls

29 lines (21 loc) · 954 Bytes

CompilePayload

Properties

Name Type Description Notes
compile_stage CompileStage
backend_type_id int

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_form_dict = compile_payload.from_dict(compile_payload_dict)

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