Name | Type | Description | Notes |
---|---|---|---|
jobs | List[UidReference] | ||
email_template | IdReference | ||
cc | List[str] | [optional] | |
bcc | List[str] | [optional] |
from phrasetms_client.models.notify_job_parts_request_dto import NotifyJobPartsRequestDto
# TODO update the JSON string below
json = "{}"
# create an instance of NotifyJobPartsRequestDto from a JSON string
notify_job_parts_request_dto_instance = NotifyJobPartsRequestDto.from_json(json)
# print the JSON string representation of the object
print NotifyJobPartsRequestDto.to_json()
# convert the object into a dict
notify_job_parts_request_dto_dict = notify_job_parts_request_dto_instance.to_dict()
# create an instance of NotifyJobPartsRequestDto from a dict
notify_job_parts_request_dto_from_dict = NotifyJobPartsRequestDto.from_dict(notify_job_parts_request_dto_dict)