class Kaltura::KalturaScheduleEventBaseFilter

Attributes

created_at_greater_than_or_equal[RW]
created_at_less_than_or_equal[RW]
end_date_greater_than_or_equal[RW]
end_date_less_than_or_equal[RW]
id_equal[RW]
id_in[RW]
id_not_in[RW]
owner_id_equal[RW]
owner_id_in[RW]
parent_id_equal[RW]
parent_id_in[RW]
parent_id_not_in[RW]
priority_equal[RW]
priority_greater_than_or_equal[RW]
priority_in[RW]
priority_less_than_or_equal[RW]
recurrence_type_equal[RW]
recurrence_type_in[RW]
reference_id_equal[RW]
reference_id_in[RW]
start_date_greater_than_or_equal[RW]
start_date_less_than_or_equal[RW]
status_equal[RW]
status_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 790
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 793
def created_at_less_than_or_equal=(val)
        @created_at_less_than_or_equal = val.to_i
end
end_date_greater_than_or_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 772
def end_date_greater_than_or_equal=(val)
        @end_date_greater_than_or_equal = val.to_i
end
end_date_less_than_or_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 775
def end_date_less_than_or_equal=(val)
        @end_date_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 803
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['parentIdNotIn'] != nil
                self.parent_id_not_in = xml_element.elements['parentIdNotIn'].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['startDateGreaterThanOrEqual'] != nil
                self.start_date_greater_than_or_equal = xml_element.elements['startDateGreaterThanOrEqual'].text
        end
        if xml_element.elements['startDateLessThanOrEqual'] != nil
                self.start_date_less_than_or_equal = xml_element.elements['startDateLessThanOrEqual'].text
        end
        if xml_element.elements['endDateGreaterThanOrEqual'] != nil
                self.end_date_greater_than_or_equal = xml_element.elements['endDateGreaterThanOrEqual'].text
        end
        if xml_element.elements['endDateLessThanOrEqual'] != nil
                self.end_date_less_than_or_equal = xml_element.elements['endDateLessThanOrEqual'].text
        end
        if xml_element.elements['referenceIdEqual'] != nil
                self.reference_id_equal = xml_element.elements['referenceIdEqual'].text
        end
        if xml_element.elements['referenceIdIn'] != nil
                self.reference_id_in = xml_element.elements['referenceIdIn'].text
        end
        if xml_element.elements['ownerIdEqual'] != nil
                self.owner_id_equal = xml_element.elements['ownerIdEqual'].text
        end
        if xml_element.elements['ownerIdIn'] != nil
                self.owner_id_in = xml_element.elements['ownerIdIn'].text
        end
        if xml_element.elements['priorityEqual'] != nil
                self.priority_equal = xml_element.elements['priorityEqual'].text
        end
        if xml_element.elements['priorityIn'] != nil
                self.priority_in = xml_element.elements['priorityIn'].text
        end
        if xml_element.elements['priorityGreaterThanOrEqual'] != nil
                self.priority_greater_than_or_equal = xml_element.elements['priorityGreaterThanOrEqual'].text
        end
        if xml_element.elements['priorityLessThanOrEqual'] != nil
                self.priority_less_than_or_equal = xml_element.elements['priorityLessThanOrEqual'].text
        end
        if xml_element.elements['recurrenceTypeEqual'] != nil
                self.recurrence_type_equal = xml_element.elements['recurrenceTypeEqual'].text
        end
        if xml_element.elements['recurrenceTypeIn'] != nil
                self.recurrence_type_in = xml_element.elements['recurrenceTypeIn'].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 757
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 760
def parent_id_equal=(val)
        @parent_id_equal = val.to_i
end
priority_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 778
def priority_equal=(val)
        @priority_equal = val.to_i
end
priority_greater_than_or_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 781
def priority_greater_than_or_equal=(val)
        @priority_greater_than_or_equal = val.to_i
end
priority_less_than_or_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 784
def priority_less_than_or_equal=(val)
        @priority_less_than_or_equal = val.to_i
end
recurrence_type_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 787
def recurrence_type_equal=(val)
        @recurrence_type_equal = val.to_i
end
start_date_greater_than_or_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 766
def start_date_greater_than_or_equal=(val)
        @start_date_greater_than_or_equal = val.to_i
end
start_date_less_than_or_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 769
def start_date_less_than_or_equal=(val)
        @start_date_less_than_or_equal = val.to_i
end
status_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 763
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 796
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 799
def updated_at_less_than_or_equal=(val)
        @updated_at_less_than_or_equal = val.to_i
end