docs/JobCreateParameters.md in phrase-1.0.3 vs docs/JobCreateParameters.md in phrase-1.0.4
- old
+ new
@@ -6,10 +6,11 @@
------------ | ------------- | ------------- | -------------
**branch** | **String** | specify the branch to use | [optional]
**name** | **String** | Job name | [optional]
**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]
## Code Sample
@@ -18,9 +19,10 @@
instance = Phrase::JobCreateParameters.new(branch: my-feature-branch,
name: de,
briefing: de-DE,
due_date: null,
+ ticket_url: https://example.atlassian.net/browse/FOO,
tags: ["myUploadTag"],
translation_key_ids: ["abcd1234cdef1234abcd1234cdef1234"])
```