docs/JobCreateParameters.md in phrase-2.6.0 vs docs/JobCreateParameters.md in phrase-2.7.0

- old
+ new

@@ -10,10 +10,11 @@ **briefing** | **String** | Briefing for the translators | [optional] **due_date** | **DateTime** | Date the job should be finished | [optional] **ticket_url** | **String** | URL to a ticket for this job (e.g. Jira, Trello) | [optional] **tags** | **Array<String>** | tags of keys that should be included within the job | [optional] **translation_key_ids** | **Array<String>** | ids of keys that should be included within the job | [optional] +**job_template_id** | **String** | id of a job template you would like to model the created job after. Any manually added parameters will take preference over template attributes. | [optional] ## Code Sample ```ruby require 'Phrase' @@ -23,9 +24,10 @@ source_locale_id: abcd1234cdef1234abcd1234cdef1234, briefing: de-DE, due_date: null, ticket_url: https://example.atlassian.net/browse/FOO, tags: ["myUploadTag"], - translation_key_ids: ["abcd1234cdef1234abcd1234cdef1234"]) + translation_key_ids: ["abcd1234cdef1234abcd1234cdef1234"], + job_template_id: abcd1234cdef1234abcd1234cdef1234) ```