class PhraseApp::RequestParams::KeysUntagParams

KeysUntagParams

Parameters:

branch

specify the branch to use

locale_id

Locale used to determine the translation state of a key when filtering for untranslated or translated keys.

q

q_description_placeholder

tags

Tag or comma-separated list of tags to remove from the matching collection of keys

Public Instance Methods

branch=(val) click to toggle source
Calls superclass method
# File lib/phraseapp-ruby.rb, line 2615
def branch=(val)
  super(val)
end
locale_id=(val) click to toggle source
Calls superclass method
# File lib/phraseapp-ruby.rb, line 2619
def locale_id=(val)
  super(val)
end
q=(val) click to toggle source
Calls superclass method
# File lib/phraseapp-ruby.rb, line 2623
def q=(val)
  super(val)
end
tags=(val) click to toggle source
Calls superclass method
# File lib/phraseapp-ruby.rb, line 2627
def tags=(val)
  super(val)
end
validate() click to toggle source
# File lib/phraseapp-ruby.rb, line 2631
def validate
  
  if tags == nil || tags == "" 
    raise PhraseApp::ParamsHelpers::ParamsValidationError.new("Required parameter \"tags\" of \"keys_untagParams\" not set")
  end
end