require 'xsd/qname' # {http://fliqz.com/services/search/20071001}searchRequest # accountId - (any) # oldest - SOAP::SOAPDateTime # maxResults - SOAP::SOAPInt # pageSize - SOAP::SOAPInt class SearchRequest attr_accessor :accountId attr_accessor :oldest attr_accessor :maxResults attr_accessor :pageSize def initialize(accountId = nil, oldest = nil, maxResults = nil, pageSize = nil) @accountId = accountId @oldest = oldest @maxResults = maxResults @pageSize = pageSize end end # {http://fliqz.com/services/search/20071001}orderedSearchRequest # accountId - (any) # oldest - SOAP::SOAPDateTime # maxResults - SOAP::SOAPInt # pageSize - SOAP::SOAPInt # mostRecent - SOAP::SOAPDateTime # order - SortOrder class OrderedSearchRequest < SearchRequest attr_accessor :accountId attr_accessor :oldest attr_accessor :maxResults attr_accessor :pageSize attr_accessor :mostRecent attr_accessor :order def initialize(accountId = nil, oldest = nil, maxResults = nil, pageSize = nil, mostRecent = nil, order = nil) @accountId = accountId @oldest = oldest @maxResults = maxResults @pageSize = pageSize @mostRecent = mostRecent @order = order end end # {http://fliqz.com/services/search/20071001}thresholdSearchRequest # accountId - (any) # oldest - SOAP::SOAPDateTime # maxResults - SOAP::SOAPInt # pageSize - SOAP::SOAPInt # mostRecent - SOAP::SOAPDateTime # order - SortOrder # lowerThreshold - SOAP::SOAPDouble # upperThreshold - SOAP::SOAPDouble class ThresholdSearchRequest < OrderedSearchRequest attr_accessor :accountId attr_accessor :oldest attr_accessor :maxResults attr_accessor :pageSize attr_accessor :mostRecent attr_accessor :order attr_accessor :lowerThreshold attr_accessor :upperThreshold def initialize(accountId = nil, oldest = nil, maxResults = nil, pageSize = nil, mostRecent = nil, order = nil, lowerThreshold = nil, upperThreshold = nil) @accountId = accountId @oldest = oldest @maxResults = maxResults @pageSize = pageSize @mostRecent = mostRecent @order = order @lowerThreshold = lowerThreshold @upperThreshold = upperThreshold end end # {http://fliqz.com/services/search/20071001}searchResponse # group - Group # nextpage - (any) class SearchResponse attr_accessor :group attr_accessor :nextpage def initialize(group = nil, nextpage = nil) @group = group @nextpage = nextpage end end # {http://fliqz.com/services/search/20071001}MediaItemBase # abstract # rating - Rating # title - Title # description - Description # keywords - Keywords # thumbnail - Thumbnail # category - Category # hash - C_Hash # player - Player # credit - Credit # copyright - Copyright # text - C_Text # restriction - Restriction class MediaItemBase attr_accessor :rating attr_accessor :title attr_accessor :description attr_accessor :keywords attr_accessor :thumbnail attr_accessor :category attr_accessor :hash attr_accessor :player attr_accessor :credit attr_accessor :copyright attr_accessor :text attr_accessor :restriction def initialize(rating = nil, title = nil, description = nil, keywords = nil, thumbnail = [], category = [], hash = [], player = nil, credit = [], copyright = nil, text = [], restriction = []) @rating = rating @title = title @description = description @keywords = keywords @thumbnail = thumbnail @category = category @hash = hash @player = player @credit = credit @copyright = copyright @text = text @restriction = restriction end end # {http://fliqz.com/services/search/20071001}Group # rating - Rating # title - Title # description - Description # keywords - Keywords # thumbnail - Thumbnail # category - Category # hash - C_Hash # player - Player # credit - Credit # copyright - Copyright # text - C_Text # restriction - Restriction # content - Content class Group < MediaItemBase attr_accessor :rating attr_accessor :title attr_accessor :description attr_accessor :keywords attr_accessor :thumbnail attr_accessor :category attr_accessor :hash attr_accessor :player attr_accessor :credit attr_accessor :copyright attr_accessor :text attr_accessor :restriction attr_accessor :content def initialize(rating = nil, title = nil, description = nil, keywords = nil, thumbnail = [], category = [], hash = [], player = nil, credit = [], copyright = nil, text = [], restriction = [], content = []) @rating = rating @title = title @description = description @keywords = keywords @thumbnail = thumbnail @category = category @hash = hash @player = player @credit = credit @copyright = copyright @text = text @restriction = restriction @content = content end end # {http://fliqz.com/services/search/20071001}enumRequest # accountID - (any) # nextPage - (any) class EnumRequest attr_accessor :accountID attr_accessor :nextPage def initialize(accountID = nil, nextPage = nil) @accountID = accountID @nextPage = nextPage end end # {http://search.yahoo.com/mrss}rating # xmlattr_scheme - SOAP::SOAPAnyURI class Rating < ::String AttrScheme = XSD::QName.new(nil, "scheme") def __xmlattr @__xmlattr ||= {} end def xmlattr_scheme __xmlattr[AttrScheme] end def xmlattr_scheme=(value) __xmlattr[AttrScheme] = value end def initialize(*arg) super @__xmlattr = {} end end # {http://search.yahoo.com/mrss}title # xmlattr_type - SOAP::SOAPString class Title < ::String AttrType = XSD::QName.new(nil, "type") def __xmlattr @__xmlattr ||= {} end def xmlattr_type __xmlattr[AttrType] end def xmlattr_type=(value) __xmlattr[AttrType] = value end def initialize(*arg) super @__xmlattr = {} end end # {http://search.yahoo.com/mrss}description # xmlattr_type - SOAP::SOAPString class Description < ::String AttrType = XSD::QName.new(nil, "type") def __xmlattr @__xmlattr ||= {} end def xmlattr_type __xmlattr[AttrType] end def xmlattr_type=(value) __xmlattr[AttrType] = value end def initialize(*arg) super @__xmlattr = {} end end # {http://search.yahoo.com/mrss}keywords class Keywords < ::String def initialize(*arg) super end end # {http://search.yahoo.com/mrss}thumbnail # xmlattr_url - SOAP::SOAPAnyURI # xmlattr_width - SOAP::SOAPInt # xmlattr_height - SOAP::SOAPInt # xmlattr_time - SOAP::SOAPString class Thumbnail AttrC_Time = XSD::QName.new(nil, "time") AttrHeight = XSD::QName.new(nil, "height") AttrUrl = XSD::QName.new(nil, "url") AttrWidth = XSD::QName.new(nil, "width") def __xmlattr @__xmlattr ||= {} end def xmlattr_url __xmlattr[AttrUrl] end def xmlattr_url=(value) __xmlattr[AttrUrl] = value end def xmlattr_width __xmlattr[AttrWidth] end def xmlattr_width=(value) __xmlattr[AttrWidth] = value end def xmlattr_height __xmlattr[AttrHeight] end def xmlattr_height=(value) __xmlattr[AttrHeight] = value end def xmlattr_time __xmlattr[AttrC_Time] end def xmlattr_time=(value) __xmlattr[AttrC_Time] = value end def initialize @__xmlattr = {} end end # {http://search.yahoo.com/mrss}category # xmlattr_scheme - SOAP::SOAPAnyURI # xmlattr_label - SOAP::SOAPString class Category < ::String AttrLabel = XSD::QName.new(nil, "label") AttrScheme = XSD::QName.new(nil, "scheme") def __xmlattr @__xmlattr ||= {} end def xmlattr_scheme __xmlattr[AttrScheme] end def xmlattr_scheme=(value) __xmlattr[AttrScheme] = value end def xmlattr_label __xmlattr[AttrLabel] end def xmlattr_label=(value) __xmlattr[AttrLabel] = value end def initialize(*arg) super @__xmlattr = {} end end # {http://search.yahoo.com/mrss}hash # xmlattr_algo - SOAP::SOAPString class C_Hash < ::String AttrAlgo = XSD::QName.new(nil, "algo") def __xmlattr @__xmlattr ||= {} end def xmlattr_algo __xmlattr[AttrAlgo] end def xmlattr_algo=(value) __xmlattr[AttrAlgo] = value end def initialize(*arg) super @__xmlattr = {} end end # {http://search.yahoo.com/mrss}player # xmlattr_url - SOAP::SOAPAnyURI # xmlattr_width - SOAP::SOAPInt # xmlattr_height - SOAP::SOAPInt class Player AttrHeight = XSD::QName.new(nil, "height") AttrUrl = XSD::QName.new(nil, "url") AttrWidth = XSD::QName.new(nil, "width") def __xmlattr @__xmlattr ||= {} end def xmlattr_url __xmlattr[AttrUrl] end def xmlattr_url=(value) __xmlattr[AttrUrl] = value end def xmlattr_width __xmlattr[AttrWidth] end def xmlattr_width=(value) __xmlattr[AttrWidth] = value end def xmlattr_height __xmlattr[AttrHeight] end def xmlattr_height=(value) __xmlattr[AttrHeight] = value end def initialize @__xmlattr = {} end end # {http://search.yahoo.com/mrss}credit # xmlattr_role - SOAP::SOAPString # xmlattr_scheme - SOAP::SOAPAnyURI class Credit < ::String AttrRole = XSD::QName.new(nil, "role") AttrScheme = XSD::QName.new(nil, "scheme") def __xmlattr @__xmlattr ||= {} end def xmlattr_role __xmlattr[AttrRole] end def xmlattr_role=(value) __xmlattr[AttrRole] = value end def xmlattr_scheme __xmlattr[AttrScheme] end def xmlattr_scheme=(value) __xmlattr[AttrScheme] = value end def initialize(*arg) super @__xmlattr = {} end end # {http://search.yahoo.com/mrss}copyright # xmlattr_url - SOAP::SOAPAnyURI class Copyright < ::String AttrUrl = XSD::QName.new(nil, "url") def __xmlattr @__xmlattr ||= {} end def xmlattr_url __xmlattr[AttrUrl] end def xmlattr_url=(value) __xmlattr[AttrUrl] = value end def initialize(*arg) super @__xmlattr = {} end end module YahooMrss end # {http://search.yahoo.com/mrss}text # xmlattr_type - SOAP::SOAPString # xmlattr_lang - SOAP::SOAPString # xmlattr_time - SOAP::SOAPString # xmlattr_end - SOAP::SOAPString class C_Text < ::String AttrC_Time = XSD::QName.new(nil, "time") AttrEnd = XSD::QName.new(nil, "end") AttrLang = XSD::QName.new(nil, "lang") AttrType = XSD::QName.new(nil, "type") def __xmlattr @__xmlattr ||= {} end def xmlattr_type __xmlattr[AttrType] end def xmlattr_type=(value) __xmlattr[AttrType] = value end def xmlattr_lang __xmlattr[AttrLang] end def xmlattr_lang=(value) __xmlattr[AttrLang] = value end def xmlattr_time __xmlattr[AttrC_Time] end def xmlattr_time=(value) __xmlattr[AttrC_Time] = value end def xmlattr_end __xmlattr[AttrEnd] end def xmlattr_end=(value) __xmlattr[AttrEnd] = value end def initialize(*arg) super @__xmlattr = {} end end # {http://search.yahoo.com/mrss}restriction # xmlattr_relationship - SOAP::SOAPString # xmlattr_type - SOAP::SOAPString class Restriction < ::String AttrRelationship = XSD::QName.new(nil, "relationship") AttrType = XSD::QName.new(nil, "type") def __xmlattr @__xmlattr ||= {} end def xmlattr_relationship __xmlattr[AttrRelationship] end def xmlattr_relationship=(value) __xmlattr[AttrRelationship] = value end def xmlattr_type __xmlattr[AttrType] end def xmlattr_type=(value) __xmlattr[AttrType] = value end def initialize(*arg) super @__xmlattr = {} end end # {http://search.yahoo.com/mrss}MediaItemBase # abstract # rating - Rating # title - Title # description - Description # keywords - Keywords # thumbnail - Thumbnail # category - Category # hash - C_Hash # player - Player # credit - Credit # copyright - Copyright # text - C_Text # restriction - Restriction class MediaItemBase_ attr_accessor :rating attr_accessor :title attr_accessor :description attr_accessor :keywords attr_accessor :thumbnail attr_accessor :category attr_accessor :hash attr_accessor :player attr_accessor :credit attr_accessor :copyright attr_accessor :text attr_accessor :restriction def initialize(rating = nil, title = nil, description = nil, keywords = nil, thumbnail = [], category = [], hash = [], player = nil, credit = [], copyright = nil, text = [], restriction = []) @rating = rating @title = title @description = description @keywords = keywords @thumbnail = thumbnail @category = category @hash = hash @player = player @credit = credit @copyright = copyright @text = text @restriction = restriction end end # {http://search.yahoo.com/mrss}Content # rating - Rating # title - Title # description - Description # keywords - Keywords # thumbnail - Thumbnail # category - Category # hash - C_Hash # player - Player # credit - Credit # copyright - Copyright # text - C_Text # restriction - Restriction # xmlattr_url - SOAP::SOAPString # xmlattr_fileSize - SOAP::SOAPInt # xmlattr_type - SOAP::SOAPString # xmlattr_medium - SOAP::SOAPString # xmlattr_isDefault - SOAP::SOAPBoolean # xmlattr_expression - SOAP::SOAPString # xmlattr_bitrate - SOAP::SOAPDouble # xmlattr_framerate - SOAP::SOAPDouble # xmlattr_samplingrate - SOAP::SOAPDouble # xmlattr_channels - SOAP::SOAPInt # xmlattr_duration - SOAP::SOAPInt # xmlattr_height - SOAP::SOAPInt # xmlattr_width - SOAP::SOAPInt # xmlattr_lang - SOAP::SOAPString class Content_ < MediaItemBase_ AttrBitrate = XSD::QName.new(nil, "bitrate") AttrChannels = XSD::QName.new(nil, "channels") AttrDuration = XSD::QName.new(nil, "duration") AttrExpression = XSD::QName.new(nil, "expression") AttrFileSize = XSD::QName.new(nil, "fileSize") AttrFramerate = XSD::QName.new(nil, "framerate") AttrHeight = XSD::QName.new(nil, "height") AttrIsDefault = XSD::QName.new(nil, "isDefault") AttrLang = XSD::QName.new(nil, "lang") AttrMedium = XSD::QName.new(nil, "medium") AttrSamplingrate = XSD::QName.new(nil, "samplingrate") AttrType = XSD::QName.new(nil, "type") AttrUrl = XSD::QName.new(nil, "url") AttrWidth = XSD::QName.new(nil, "width") attr_accessor :rating attr_accessor :title attr_accessor :description attr_accessor :keywords attr_accessor :thumbnail attr_accessor :category attr_accessor :hash attr_accessor :player attr_accessor :credit attr_accessor :copyright attr_accessor :text attr_accessor :restriction attr_reader :__xmlele_any def set_any(elements) @__xmlele_any = elements end def __xmlattr @__xmlattr ||= {} end def xmlattr_url __xmlattr[AttrUrl] end def xmlattr_url=(value) __xmlattr[AttrUrl] = value end def xmlattr_fileSize __xmlattr[AttrFileSize] end def xmlattr_fileSize=(value) __xmlattr[AttrFileSize] = value end def xmlattr_type __xmlattr[AttrType] end def xmlattr_type=(value) __xmlattr[AttrType] = value end def xmlattr_medium __xmlattr[AttrMedium] end def xmlattr_medium=(value) __xmlattr[AttrMedium] = value end def xmlattr_isDefault __xmlattr[AttrIsDefault] end def xmlattr_isDefault=(value) __xmlattr[AttrIsDefault] = value end def xmlattr_expression __xmlattr[AttrExpression] end def xmlattr_expression=(value) __xmlattr[AttrExpression] = value end def xmlattr_bitrate __xmlattr[AttrBitrate] end def xmlattr_bitrate=(value) __xmlattr[AttrBitrate] = value end def xmlattr_framerate __xmlattr[AttrFramerate] end def xmlattr_framerate=(value) __xmlattr[AttrFramerate] = value end def xmlattr_samplingrate __xmlattr[AttrSamplingrate] end def xmlattr_samplingrate=(value) __xmlattr[AttrSamplingrate] = value end def xmlattr_channels __xmlattr[AttrChannels] end def xmlattr_channels=(value) __xmlattr[AttrChannels] = value end def xmlattr_duration __xmlattr[AttrDuration] end def xmlattr_duration=(value) __xmlattr[AttrDuration] = value end def xmlattr_height __xmlattr[AttrHeight] end def xmlattr_height=(value) __xmlattr[AttrHeight] = value end def xmlattr_width __xmlattr[AttrWidth] end def xmlattr_width=(value) __xmlattr[AttrWidth] = value end def xmlattr_lang __xmlattr[AttrLang] end def xmlattr_lang=(value) __xmlattr[AttrLang] = value end def initialize(rating = nil, title = nil, description = nil, keywords = nil, thumbnail = [], category = [], hash = [], player = nil, credit = [], copyright = nil, text = [], restriction = []) @rating = rating @title = title @description = description @keywords = keywords @thumbnail = thumbnail @category = category @hash = hash @player = player @credit = credit @copyright = copyright @text = text @restriction = restriction @__xmlele_any = nil @__xmlattr = {} end end # {http://search.yahoo.com/mrss}content # rating - Rating # title - Title # description - Description # keywords - Keywords # thumbnail - Thumbnail # category - Category # hash - C_Hash # player - Player # credit - Credit # copyright - Copyright # text - C_Text # restriction - Restriction # shares - SOAP::SOAPInt # plays - SOAP::SOAPInt # userRating - SOAP::SOAPDouble # userRatingCount - SOAP::SOAPInt # status - VideoStatus # flags - FlagReport # embed - SOAP::SOAPString # xmlattr_url - SOAP::SOAPString # xmlattr_fileSize - SOAP::SOAPInt # xmlattr_type - SOAP::SOAPString # xmlattr_medium - SOAP::SOAPString # xmlattr_isDefault - SOAP::SOAPBoolean # xmlattr_expression - SOAP::SOAPString # xmlattr_bitrate - SOAP::SOAPDouble # xmlattr_framerate - SOAP::SOAPDouble # xmlattr_samplingrate - SOAP::SOAPDouble # xmlattr_channels - SOAP::SOAPInt # xmlattr_duration - SOAP::SOAPInt # xmlattr_height - SOAP::SOAPInt # xmlattr_width - SOAP::SOAPInt # xmlattr_lang - SOAP::SOAPString class Content < Content_ AttrBitrate = XSD::QName.new(nil, "bitrate") AttrChannels = XSD::QName.new(nil, "channels") AttrDuration = XSD::QName.new(nil, "duration") AttrExpression = XSD::QName.new(nil, "expression") AttrFileSize = XSD::QName.new(nil, "fileSize") AttrFramerate = XSD::QName.new(nil, "framerate") AttrHeight = XSD::QName.new(nil, "height") AttrIsDefault = XSD::QName.new(nil, "isDefault") AttrLang = XSD::QName.new(nil, "lang") AttrMedium = XSD::QName.new(nil, "medium") AttrSamplingrate = XSD::QName.new(nil, "samplingrate") AttrType = XSD::QName.new(nil, "type") AttrUrl = XSD::QName.new(nil, "url") AttrWidth = XSD::QName.new(nil, "width") attr_accessor :rating attr_accessor :title attr_accessor :description attr_accessor :keywords attr_accessor :thumbnail attr_accessor :category attr_accessor :hash attr_accessor :player attr_accessor :credit attr_accessor :copyright attr_accessor :text attr_accessor :restriction attr_reader :__xmlele_any attr_accessor :shares attr_accessor :plays attr_accessor :userRating attr_accessor :userRatingCount attr_accessor :status attr_accessor :flags attr_accessor :embed def set_any(elements) @__xmlele_any = elements end def __xmlattr @__xmlattr ||= {} end def xmlattr_url __xmlattr[AttrUrl] end def xmlattr_url=(value) __xmlattr[AttrUrl] = value end def xmlattr_fileSize __xmlattr[AttrFileSize] end def xmlattr_fileSize=(value) __xmlattr[AttrFileSize] = value end def xmlattr_type __xmlattr[AttrType] end def xmlattr_type=(value) __xmlattr[AttrType] = value end def xmlattr_medium __xmlattr[AttrMedium] end def xmlattr_medium=(value) __xmlattr[AttrMedium] = value end def xmlattr_isDefault __xmlattr[AttrIsDefault] end def xmlattr_isDefault=(value) __xmlattr[AttrIsDefault] = value end def xmlattr_expression __xmlattr[AttrExpression] end def xmlattr_expression=(value) __xmlattr[AttrExpression] = value end def xmlattr_bitrate __xmlattr[AttrBitrate] end def xmlattr_bitrate=(value) __xmlattr[AttrBitrate] = value end def xmlattr_framerate __xmlattr[AttrFramerate] end def xmlattr_framerate=(value) __xmlattr[AttrFramerate] = value end def xmlattr_samplingrate __xmlattr[AttrSamplingrate] end def xmlattr_samplingrate=(value) __xmlattr[AttrSamplingrate] = value end def xmlattr_channels __xmlattr[AttrChannels] end def xmlattr_channels=(value) __xmlattr[AttrChannels] = value end def xmlattr_duration __xmlattr[AttrDuration] end def xmlattr_duration=(value) __xmlattr[AttrDuration] = value end def xmlattr_height __xmlattr[AttrHeight] end def xmlattr_height=(value) __xmlattr[AttrHeight] = value end def xmlattr_width __xmlattr[AttrWidth] end def xmlattr_width=(value) __xmlattr[AttrWidth] = value end def xmlattr_lang __xmlattr[AttrLang] end def xmlattr_lang=(value) __xmlattr[AttrLang] = value end def initialize(rating = nil, title = nil, description = nil, keywords = nil, thumbnail = [], category = [], hash = [], player = nil, credit = [], copyright = nil, text = [], restriction = [], shares = nil, plays = nil, userRating = nil, userRatingCount = nil, status = nil, flags = nil, embed = nil) @rating = rating @title = title @description = description @keywords = keywords @thumbnail = thumbnail @category = category @hash = hash @player = player @credit = credit @copyright = copyright @text = text @restriction = restriction @__xmlele_any = nil @shares = shares @plays = plays @userRating = userRating @userRatingCount = userRatingCount @status = status @flags = flags @embed = embed @__xmlattr = {} end end # {http://fliqz.com/services/080107}flagReport # pornography - SOAP::SOAPInt # violence - SOAP::SOAPInt # racial - SOAP::SOAPInt # language - SOAP::SOAPInt # other - SOAP::SOAPInt class FlagReport attr_accessor :pornography attr_accessor :violence attr_accessor :racial attr_accessor :language attr_accessor :other def initialize(pornography = nil, violence = nil, racial = nil, language = nil, other = nil) @pornography = pornography @violence = violence @racial = racial @language = language @other = other end end # {http://fliqz.com/services/search/20071001}SortOrder class SortOrder < ::String Asc = SortOrder.new("Asc") Desc = SortOrder.new("Desc") end # {http://fliqz.com/services/search/20071001}VideoStatus class VideoStatus < ::String Available = VideoStatus.new("Available") Broken = VideoStatus.new("Broken") Deleted = VideoStatus.new("Deleted") Encoding = VideoStatus.new("Encoding") end # {http://search.yahoo.com/mrss}TextType class TextType < ::String Html = TextType.new("html") Plain = TextType.new("plain") end # {http://search.yahoo.com/mrss}HashAlgorithmType class HashAlgorithmType < ::String Md5 = HashAlgorithmType.new("md5") Sha1 = HashAlgorithmType.new("sha-1") end # {http://search.yahoo.com/mrss}RelationshipType class RelationshipType < ::String Allow = RelationshipType.new("allow") Deny = RelationshipType.new("deny") end # {http://search.yahoo.com/mrss}RestrictionType class RestrictionType < ::String Country = RestrictionType.new("country") Uri = RestrictionType.new("uri") end # {http://search.yahoo.com/mrss}MediumType class MediumType < ::String Audio = MediumType.new("audio") Document = MediumType.new("document") Executable = MediumType.new("executable") Image = MediumType.new("image") Video = MediumType.new("video") end # {http://search.yahoo.com/mrss}ExpressionType class ExpressionType < ::String Full = ExpressionType.new("full") Nonstop = ExpressionType.new("nonstop") Sample = ExpressionType.new("sample") end # {http://fliqz.com/services/search/20071001}GetByUploadDate # request - OrderedSearchRequest class GetByUploadDate attr_accessor :request def initialize(request = nil) @request = request end end # {http://fliqz.com/services/search/20071001}GetByUploadDateResponse # getByUploadDateResult - SearchResponse class GetByUploadDateResponse attr_accessor :getByUploadDateResult def initialize(getByUploadDateResult = nil) @getByUploadDateResult = getByUploadDateResult end end # {http://fliqz.com/services/search/20071001}GetByRating # request - ThresholdSearchRequest class GetByRating attr_accessor :request def initialize(request = nil) @request = request end end # {http://fliqz.com/services/search/20071001}GetByRatingResponse # getByRatingResult - SearchResponse class GetByRatingResponse attr_accessor :getByRatingResult def initialize(getByRatingResult = nil) @getByRatingResult = getByRatingResult end end # {http://fliqz.com/services/search/20071001}GetByShares # request - ThresholdSearchRequest class GetByShares attr_accessor :request def initialize(request = nil) @request = request end end # {http://fliqz.com/services/search/20071001}GetBySharesResponse # getBySharesResult - SearchResponse class GetBySharesResponse attr_accessor :getBySharesResult def initialize(getBySharesResult = nil) @getBySharesResult = getBySharesResult end end # {http://fliqz.com/services/search/20071001}GetByPlays # request - ThresholdSearchRequest class GetByPlays attr_accessor :request def initialize(request = nil) @request = request end end # {http://fliqz.com/services/search/20071001}GetByPlaysResponse # getByPlaysResult - SearchResponse class GetByPlaysResponse attr_accessor :getByPlaysResult def initialize(getByPlaysResult = nil) @getByPlaysResult = getByPlaysResult end end # {http://fliqz.com/services/search/20071001}GetByApprovalDate # request - SearchRequest class GetByApprovalDate attr_accessor :request def initialize(request = nil) @request = request end end # {http://fliqz.com/services/search/20071001}GetByApprovalDateResponse # getByApprovalDateResult - SearchResponse class GetByApprovalDateResponse attr_accessor :getByApprovalDateResult def initialize(getByApprovalDateResult = nil) @getByApprovalDateResult = getByApprovalDateResult end end # {http://fliqz.com/services/search/20071001}GetByAvailabilityDate # request - SearchRequest class GetByAvailabilityDate attr_accessor :request def initialize(request = nil) @request = request end end # {http://fliqz.com/services/search/20071001}GetByAvailabilityDateResponse # getByAvailabilityDateResult - SearchResponse class GetByAvailabilityDateResponse attr_accessor :getByAvailabilityDateResult def initialize(getByAvailabilityDateResult = nil) @getByAvailabilityDateResult = getByAvailabilityDateResult end end # {http://fliqz.com/services/search/20071001}GetNextPage # request - EnumRequest class GetNextPage attr_accessor :request def initialize(request = nil) @request = request end end # {http://fliqz.com/services/search/20071001}GetNextPageResponse # getNextPageResult - SearchResponse class GetNextPageResponse attr_accessor :getNextPageResult def initialize(getNextPageResult = nil) @getNextPageResult = getNextPageResult end end