Class: Kaltura::KalturaReachProfileBaseFilter

Inherits:
KalturaRelatedFilter show all
Defined in:
lib/kaltura_plugins/kaltura_reach_client_plugin.rb

Direct Known Subclasses

KalturaReachProfileFilter

Instance Attribute Summary collapse

Attributes inherited from KalturaFilter

#advanced_search, #order_by

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#created_at_greater_than_or_equalObject

Returns the value of attribute created_at_greater_than_or_equal.



1123
1124
1125
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1123

def created_at_greater_than_or_equal
  @created_at_greater_than_or_equal
end

#created_at_less_than_or_equalObject

Returns the value of attribute created_at_less_than_or_equal.



1124
1125
1126
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1124

def created_at_less_than_or_equal
  @created_at_less_than_or_equal
end

#id_equalObject

Returns the value of attribute id_equal.



1121
1122
1123
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1121

def id_equal
  @id_equal
end

#id_inObject

Returns the value of attribute id_in.



1122
1123
1124
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1122

def id_in
  @id_in
end

#profile_type_equalObject

Returns the value of attribute profile_type_equal.



1129
1130
1131
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1129

def profile_type_equal
  @profile_type_equal
end

#profile_type_inObject

Returns the value of attribute profile_type_in.



1130
1131
1132
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1130

def profile_type_in
  @profile_type_in
end

#status_equalObject

Returns the value of attribute status_equal.



1127
1128
1129
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1127

def status_equal
  @status_equal
end

#status_inObject

Returns the value of attribute status_in.



1128
1129
1130
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1128

def status_in
  @status_in
end

#updated_at_greater_than_or_equalObject

Returns the value of attribute updated_at_greater_than_or_equal.



1125
1126
1127
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1125

def updated_at_greater_than_or_equal
  @updated_at_greater_than_or_equal
end

#updated_at_less_than_or_equalObject

Returns the value of attribute updated_at_less_than_or_equal.



1126
1127
1128
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1126

def updated_at_less_than_or_equal
  @updated_at_less_than_or_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1154

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['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
  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['profileTypeEqual'] != nil
    self.profile_type_equal = xml_element.elements['profileTypeEqual'].text
  end
  if xml_element.elements['profileTypeIn'] != nil
    self.profile_type_in = xml_element.elements['profileTypeIn'].text
  end
end