Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.41 KB

NotifyJobPartsRequestDto.md

File metadata and controls

30 lines (23 loc) · 1.41 KB

NotifyJobPartsRequestDto

Properties

Name Type Description Notes
jobs List[UidReference]
email_template IdReference
cc List[str] [optional]
bcc List[str] [optional]

Example

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)

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