Sha256: 7d28c968746c3b7814aa6a3cf09d721259fcb8234145da78abf098cec5d9b442
Contents?: true
Size: 1.99 KB
Versions: 4
Compression:
Stored size: 1.99 KB
Contents
# frozen_string_literal: true module MediaWiktory::Wikipedia module Modules # Get suggestion lists for Content Translation. _Generator module: for fetching pages corresponding to request._ # # The "submodule" (MediaWiki API term) is included in action after setting some param, providing # additional tweaking for this param. Example (for {MediaWiktory::Wikipedia::Actions::Query} and # its submodules): # # ```ruby # api.query # returns Actions::Query # .prop(:revisions) # adds prop=revisions to action URL, and includes Modules::Revisions into action # .limit(10) # method of Modules::Revisions, adds rvlimit=10 to URL # ``` # # All submodule's parameters are documented as its public methods, see below. # module GContenttranslationsuggestions # The source language code. # # @param value [String] # @return [self] def from(value) merge(gfrom: value.to_s) end # The target language code. # # @param value [String] # @return [self] def to(value) merge(gto: value.to_s) end # Return suggestions only from a particular list # # @param value [String] # @return [self] def listid(value) merge(glistid: value.to_s) end # The maximum number of translation suggestions to fetch. # # @param value [Integer, "max"] # @return [self] def limit(value) merge(glimit: value.to_s) end # Offset for paginated results. # # @param value [String] # @return [self] def offset(value) merge(goffset: value.to_s) end # By default suggestions are returned in random order. If you wish to return each suggestion only once when using limit and offset, you must specify a seed for all the requests. # # @param value [Integer] # @return [self] def seed(value) merge(gseed: value.to_s) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems