Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 789 Bytes

GlossaryTermCreateParameters.md

File metadata and controls

23 lines (16 loc) · 789 Bytes

Phrase::GlossaryTermCreateParameters

Properties

Name Type Description Notes
term String Glossary term
description String Description of term [optional]
translatable Boolean Indicates whether the term should be used for all languages or can be translated [optional]
case_sensitive Boolean Indicates whether the term is case sensitive [optional]

Code Sample

require 'Phrase'

instance = Phrase::GlossaryTermCreateParameters.new(term: MyCompany,
                                 description: Use this when refering to our company,
                                 translatable: true,
                                 case_sensitive: true)