class PhraseApp::RequestParams::GlossaryTermTranslationParams

GlossaryTermTranslationParams

Parameters:

content

The content of the translation

locale_code

Identifies the language for this translation

Public Instance Methods

content=(val) click to toggle source
Calls superclass method
# File lib/phraseapp-ruby.rb, line 702
def content=(val)
  super(val)
end
locale_code=(val) click to toggle source
Calls superclass method
# File lib/phraseapp-ruby.rb, line 706
def locale_code=(val)
  super(val)
end
validate() click to toggle source
# File lib/phraseapp-ruby.rb, line 710
def validate
  
  if locale_code == nil || locale_code == "" 
    raise PhraseApp::ParamsHelpers::ParamsValidationError.new("Required parameter \"locale_code\" of \"GlossaryTermTranslationParams\" not set")
  end
end