Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.34 KB

JobLocalesCreateParameters.md

File metadata and controls

27 lines (20 loc) · 1.34 KB

Phrase::JobLocalesCreateParameters

Properties

Name Type Description Notes
branch String specify the branch to use [optional]
locale_id String ID of a locale to be added
user_ids Array<String> Array of user ids to be assigned to the job locale as translators [optional]
reviewer_ids Array<String> Array of reviewer ids to be assigned to the job locale as reviewers [optional]
translator_team_ids Array<String> Array of team ids to be assigned to the job locale as translators [optional]
reviewer_team_ids Array<String> Array of team ids to be assigned to the job locale as reviewers [optional]

Code Sample

require 'Phrase'

instance = Phrase::JobLocalesCreateParameters.new(branch: my-feature-branch,
                                 locale_id: abcd1234cdef1234abcd1234cdef1234,
                                 user_ids: [&quot;abcd1234cdef1234abcd1234cdef1234&quot;],
                                 reviewer_ids: [&quot;abcd1234cdef1234abcd1234cdef1234&quot;],
                                 translator_team_ids: [&quot;abcd1234cdef1234abcd1234cdef1234&quot;],
                                 reviewer_team_ids: [&quot;abcd1234cdef1234abcd1234cdef1234&quot;])