class Kaltura::KalturaScheduleResourceBaseFilter

Attributes

created_at_greater_than_or_equal[RW]
created_at_less_than_or_equal[RW]
id_equal[RW]
id_in[RW]
id_not_in[RW]
name_equal[RW]
parent_id_equal[RW]
parent_id_in[RW]
status_equal[RW]
status_in[RW]
system_name_equal[RW]
system_name_in[RW]
tags_like[RW]
tags_multi_like_and[RW]
tags_multi_like_or[RW]
updated_at_greater_than_or_equal[RW]
updated_at_less_than_or_equal[RW]

Public Instance Methods

created_at_greater_than_or_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 983
def created_at_greater_than_or_equal=(val)
        @created_at_greater_than_or_equal = val.to_i
end
created_at_less_than_or_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 986
def created_at_less_than_or_equal=(val)
        @created_at_less_than_or_equal = val.to_i
end
from_xml(xml_element) click to toggle source
Calls superclass method
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 996
def from_xml(xml_element)
        super
        if xml_element.elements['idEqual'] != nil
                self.id_equal = xml_element.elements['idEqual'].text
        end
        if xml_element.elements['idIn'] != nil
                self.id_in = xml_element.elements['idIn'].text
        end
        if xml_element.elements['idNotIn'] != nil
                self.id_not_in = xml_element.elements['idNotIn'].text
        end
        if xml_element.elements['parentIdEqual'] != nil
                self.parent_id_equal = xml_element.elements['parentIdEqual'].text
        end
        if xml_element.elements['parentIdIn'] != nil
                self.parent_id_in = xml_element.elements['parentIdIn'].text
        end
        if xml_element.elements['nameEqual'] != nil
                self.name_equal = xml_element.elements['nameEqual'].text
        end
        if xml_element.elements['systemNameEqual'] != nil
                self.system_name_equal = xml_element.elements['systemNameEqual'].text
        end
        if xml_element.elements['systemNameIn'] != nil
                self.system_name_in = xml_element.elements['systemNameIn'].text
        end
        if xml_element.elements['statusEqual'] != nil
                self.status_equal = xml_element.elements['statusEqual'].text
        end
        if xml_element.elements['statusIn'] != nil
                self.status_in = xml_element.elements['statusIn'].text
        end
        if xml_element.elements['tagsLike'] != nil
                self.tags_like = xml_element.elements['tagsLike'].text
        end
        if xml_element.elements['tagsMultiLikeOr'] != nil
                self.tags_multi_like_or = xml_element.elements['tagsMultiLikeOr'].text
        end
        if xml_element.elements['tagsMultiLikeAnd'] != nil
                self.tags_multi_like_and = xml_element.elements['tagsMultiLikeAnd'].text
        end
        if xml_element.elements['createdAtGreaterThanOrEqual'] != nil
                self.created_at_greater_than_or_equal = xml_element.elements['createdAtGreaterThanOrEqual'].text
        end
        if xml_element.elements['createdAtLessThanOrEqual'] != nil
                self.created_at_less_than_or_equal = xml_element.elements['createdAtLessThanOrEqual'].text
        end
        if xml_element.elements['updatedAtGreaterThanOrEqual'] != nil
                self.updated_at_greater_than_or_equal = xml_element.elements['updatedAtGreaterThanOrEqual'].text
        end
        if xml_element.elements['updatedAtLessThanOrEqual'] != nil
                self.updated_at_less_than_or_equal = xml_element.elements['updatedAtLessThanOrEqual'].text
        end
end
id_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 974
def id_equal=(val)
        @id_equal = val.to_i
end
parent_id_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 977
def parent_id_equal=(val)
        @parent_id_equal = val.to_i
end
status_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 980
def status_equal=(val)
        @status_equal = val.to_i
end
updated_at_greater_than_or_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 989
def updated_at_greater_than_or_equal=(val)
        @updated_at_greater_than_or_equal = val.to_i
end
updated_at_less_than_or_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 992
def updated_at_less_than_or_equal=(val)
        @updated_at_less_than_or_equal = val.to_i
end