Class: Kaltura::KalturaCuePoint

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb

Instance Attribute Summary collapse

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_atObject

Returns the value of attribute created_at.



77
78
79
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 77

def created_at
  @created_at
end

#cue_point_typeObject

Returns the value of attribute cue_point_type.



73
74
75
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 73

def cue_point_type
  @cue_point_type
end

#entry_idObject

Returns the value of attribute entry_id.



75
76
77
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 75

def entry_id
  @entry_id
end

#force_stopObject

Returns the value of attribute force_stop.



87
88
89
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 87

def force_stop
  @force_stop
end

#idObject

Returns the value of attribute id.



72
73
74
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 72

def id
  @id
end

#partner_dataObject

Returns the value of attribute partner_data.



85
86
87
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 85

def partner_data
  @partner_data
end

#partner_idObject

Returns the value of attribute partner_id.



76
77
78
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 76

def partner_id
  @partner_id
end

#partner_sort_valueObject

Returns the value of attribute partner_sort_value.



86
87
88
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 86

def partner_sort_value
  @partner_sort_value
end

#start_timeObject

Start time in milliseconds



83
84
85
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 83

def start_time
  @start_time
end

#statusObject

Returns the value of attribute status.



74
75
76
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 74

def status
  @status
end

#system_nameObject

Returns the value of attribute system_name.



89
90
91
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 89

def system_name
  @system_name
end

#tagsObject

Returns the value of attribute tags.



80
81
82
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 80

def tags
  @tags
end

#thumb_offsetObject

Returns the value of attribute thumb_offset.



88
89
90
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 88

def thumb_offset
  @thumb_offset
end

#triggered_atObject

Returns the value of attribute triggered_at.



79
80
81
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 79

def triggered_at
  @triggered_at
end

#updated_atObject

Returns the value of attribute updated_at.



78
79
80
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 78

def updated_at
  @updated_at
end

#user_idObject

Returns the value of attribute user_id.



84
85
86
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 84

def user_id
  @user_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# File 'lib/kaltura_plugins/kaltura_cue_point_client_plugin.rb', line 119

def from_xml(xml_element)
	super
	self.id = xml_element.elements['id'].text
	self.cue_point_type = xml_element.elements['cuePointType'].text
	self.status = xml_element.elements['status'].text
	self.entry_id = xml_element.elements['entryId'].text
	self.partner_id = xml_element.elements['partnerId'].text
	self.created_at = xml_element.elements['createdAt'].text
	self.updated_at = xml_element.elements['updatedAt'].text
	self.triggered_at = xml_element.elements['triggeredAt'].text
	self.tags = xml_element.elements['tags'].text
	self.start_time = xml_element.elements['startTime'].text
	self.user_id = xml_element.elements['userId'].text
	self.partner_data = xml_element.elements['partnerData'].text
	self.partner_sort_value = xml_element.elements['partnerSortValue'].text
	self.force_stop = xml_element.elements['forceStop'].text
	self.thumb_offset = xml_element.elements['thumbOffset'].text
	self.system_name = xml_element.elements['systemName'].text
end