Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 908 Bytes

File metadata and controls

23 lines (16 loc) · 908 Bytes

Phrase::OrganizationJobTemplateCreateParameters

Properties

Name Type Description Notes
name String Job template name
briefing String Briefing for the translators [optional]
autotranslate Boolean Automatically translate the job using machine translation. [optional]
owner_id String Code of the account member to set as the job template owner. When omitted or blank, no owner is pre-set; the user who creates a job from this template is assigned as its owner at job-creation time. [optional]

Code Sample

require 'phrase'

instance = Phrase::OrganizationJobTemplateCreateParameters.new(name: 'template',
                                 briefing: 'text',
                                 autotranslate: true,
                                 owner_id: nil)