Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 956 Bytes

File metadata and controls

29 lines (21 loc) · 956 Bytes

CreateJobMessage

Properties

Name Type Description Notes
type str Job creation type
message_id List[int] Message Ids

Example

from bsg_api.models.create_job_message import CreateJobMessage

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

# convert the object into a dict
create_job_message_dict = create_job_message_instance.to_dict()
# create an instance of CreateJobMessage from a dict
create_job_message_from_dict = CreateJobMessage.from_dict(create_job_message_dict)

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