Class: PhraseApp::RequestParams::TranslationUpdateParams

Inherits:
OpenStruct
  • Object
show all
Defined in:
lib/phraseapp-ruby.rb

Overview

TranslationUpdateParams

Parameters:

content

Translation content

excluded

Indicates whether translation is excluded.

plural_suffix

Plural suffix. Can be one of: zero, one, two, few, many, other. Must be specified if the key associated to the translation is pluralized.

unverified

Indicates whether translation is unverified. Part of the <a href=“phraseapp.com/docs/guides/working-with-phraseapp/verification-proofreading” target=“_blank”>Advanced Workflows</a> feature and only available in <a href=“phraseapp.com/pricing” target=“_blank”>Control Package</a>.

Instance Method Summary collapse

Instance Method Details

#content=(val) ⇒ Object



2154
2155
2156
# File 'lib/phraseapp-ruby.rb', line 2154

def content=(val)
  super(val)
end

#excluded=(val) ⇒ Object



2158
2159
2160
2161
2162
2163
2164
2165
2166
# File 'lib/phraseapp-ruby.rb', line 2158

def excluded=(val)
  if val.is_a?(TrueClass)
    super(true)
  elsif val.is_a?(FalseClass)
    return
  else
    PhraseApp::ParamsHelpers::ParamsValidationError.new("invalid value #{val}")
  end
end

#plural_suffix=(val) ⇒ Object



2168
2169
2170
# File 'lib/phraseapp-ruby.rb', line 2168

def plural_suffix=(val)
  super(val)
end

#unverified=(val) ⇒ Object



2172
2173
2174
2175
2176
2177
2178
2179
2180
# File 'lib/phraseapp-ruby.rb', line 2172

def unverified=(val)
  if val.is_a?(TrueClass)
    super(true)
  elsif val.is_a?(FalseClass)
    return
  else
    PhraseApp::ParamsHelpers::ParamsValidationError.new("invalid value #{val}")
  end
end

#validateObject



2182
2183
2184
2185
2186
2187
# File 'lib/phraseapp-ruby.rb', line 2182

def validate
  
  if content == nil || content == "" 
    raise PhraseApp::ParamsHelpers::ParamsValidationError.new("Required parameter \"content\" of \"translation_updateParams\" not set")
  end
end