Class: Kaltura::KalturaBulkUploadResultEntry

Inherits:
KalturaBulkUploadResult show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaBulkUploadResult

#action, #bulk_upload_job_id, #bulk_upload_result_object_type, #error_code, #error_description, #error_type, #id, #line_index, #object_error_description, #object_id, #object_status, #partner_data, #partner_id, #plugins_data, #row_data, #status

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#access_control_profile_idObject

Returns the value of attribute access_control_profile_id.



11088
11089
11090
# File 'lib/kaltura_types.rb', line 11088

def access_control_profile_id
  @access_control_profile_id
end

#categoryObject

Returns the value of attribute category.



11089
11090
11091
# File 'lib/kaltura_types.rb', line 11089

def category
  @category
end

#content_typeObject

Returns the value of attribute content_type.



11086
11087
11088
# File 'lib/kaltura_types.rb', line 11086

def content_type
  @content_type
end

#conversion_profile_idObject

Returns the value of attribute conversion_profile_id.



11087
11088
11089
# File 'lib/kaltura_types.rb', line 11087

def conversion_profile_id
  @conversion_profile_id
end

#creator_idObject

Returns the value of attribute creator_id.



11098
11099
11100
# File 'lib/kaltura_types.rb', line 11098

def creator_id
  @creator_id
end

#descriptionObject

Returns the value of attribute description.



11083
11084
11085
# File 'lib/kaltura_types.rb', line 11083

def description
  @description
end

#entitled_users_editObject

Returns the value of attribute entitled_users_edit.



11099
11100
11101
# File 'lib/kaltura_types.rb', line 11099

def entitled_users_edit
  @entitled_users_edit
end

#entitled_users_publishObject

Returns the value of attribute entitled_users_publish.



11100
11101
11102
# File 'lib/kaltura_types.rb', line 11100

def entitled_users_publish
  @entitled_users_publish
end

#entry_idObject

Returns the value of attribute entry_id.



11081
11082
11083
# File 'lib/kaltura_types.rb', line 11081

def entry_id
  @entry_id
end

#entry_statusObject

Returns the value of attribute entry_status.



11092
11093
11094
# File 'lib/kaltura_types.rb', line 11092

def entry_status
  @entry_status
end

#owner_idObject

Returns the value of attribute owner_id.



11101
11102
11103
# File 'lib/kaltura_types.rb', line 11101

def owner_id
  @owner_id
end

#reference_idObject

Returns the value of attribute reference_id.



11102
11103
11104
# File 'lib/kaltura_types.rb', line 11102

def reference_id
  @reference_id
end

#schedule_end_dateObject

Returns the value of attribute schedule_end_date.



11091
11092
11093
# File 'lib/kaltura_types.rb', line 11091

def schedule_end_date
  @schedule_end_date
end

#schedule_start_dateObject

Returns the value of attribute schedule_start_date.



11090
11091
11092
# File 'lib/kaltura_types.rb', line 11090

def schedule_start_date
  @schedule_start_date
end

#ssh_key_passphraseObject

Returns the value of attribute ssh_key_passphrase.



11097
11098
11099
# File 'lib/kaltura_types.rb', line 11097

def ssh_key_passphrase
  @ssh_key_passphrase
end

#ssh_private_keyObject

Returns the value of attribute ssh_private_key.



11095
11096
11097
# File 'lib/kaltura_types.rb', line 11095

def ssh_private_key
  @ssh_private_key
end

#ssh_public_keyObject

Returns the value of attribute ssh_public_key.



11096
11097
11098
# File 'lib/kaltura_types.rb', line 11096

def ssh_public_key
  @ssh_public_key
end

#tagsObject

Returns the value of attribute tags.



11084
11085
11086
# File 'lib/kaltura_types.rb', line 11084

def tags
  @tags
end

#template_entry_idObject

Returns the value of attribute template_entry_id.



11103
11104
11105
# File 'lib/kaltura_types.rb', line 11103

def template_entry_id
  @template_entry_id
end

#thumbnail_savedObject

Returns the value of attribute thumbnail_saved.



11094
11095
11096
# File 'lib/kaltura_types.rb', line 11094

def thumbnail_saved
  @thumbnail_saved
end

#thumbnail_urlObject

Returns the value of attribute thumbnail_url.



11093
11094
11095
# File 'lib/kaltura_types.rb', line 11093

def thumbnail_url
  @thumbnail_url
end

#titleObject

Returns the value of attribute title.



11082
11083
11084
# File 'lib/kaltura_types.rb', line 11082

def title
  @title
end

#urlObject

Returns the value of attribute url.



11085
11086
11087
# File 'lib/kaltura_types.rb', line 11085

def url
  @url
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11124
11125
11126
11127
11128
11129
11130
11131
11132
11133
11134
11135
11136
11137
11138
11139
11140
11141
11142
11143
11144
11145
11146
11147
11148
11149
11150
11151
11152
11153
11154
11155
11156
11157
11158
11159
11160
11161
11162
11163
11164
11165
11166
11167
11168
11169
11170
11171
11172
11173
11174
11175
11176
11177
11178
11179
11180
11181
11182
11183
11184
11185
11186
11187
11188
11189
11190
11191
11192
11193
11194
11195
# File 'lib/kaltura_types.rb', line 11124

def from_xml(xml_element)
	super
	if xml_element.elements['entryId'] != nil
		self.entry_id = xml_element.elements['entryId'].text
	end
	if xml_element.elements['title'] != nil
		self.title = xml_element.elements['title'].text
	end
	if xml_element.elements['description'] != nil
		self.description = xml_element.elements['description'].text
	end
	if xml_element.elements['tags'] != nil
		self.tags = xml_element.elements['tags'].text
	end
	if xml_element.elements['url'] != nil
		self.url = xml_element.elements['url'].text
	end
	if xml_element.elements['contentType'] != nil
		self.content_type = xml_element.elements['contentType'].text
	end
	if xml_element.elements['conversionProfileId'] != nil
		self.conversion_profile_id = xml_element.elements['conversionProfileId'].text
	end
	if xml_element.elements['accessControlProfileId'] != nil
		self.access_control_profile_id = xml_element.elements['accessControlProfileId'].text
	end
	if xml_element.elements['category'] != nil
		self.category = xml_element.elements['category'].text
	end
	if xml_element.elements['scheduleStartDate'] != nil
		self.schedule_start_date = xml_element.elements['scheduleStartDate'].text
	end
	if xml_element.elements['scheduleEndDate'] != nil
		self.schedule_end_date = xml_element.elements['scheduleEndDate'].text
	end
	if xml_element.elements['entryStatus'] != nil
		self.entry_status = xml_element.elements['entryStatus'].text
	end
	if xml_element.elements['thumbnailUrl'] != nil
		self.thumbnail_url = xml_element.elements['thumbnailUrl'].text
	end
	if xml_element.elements['thumbnailSaved'] != nil
		self.thumbnail_saved = xml_element.elements['thumbnailSaved'].text
	end
	if xml_element.elements['sshPrivateKey'] != nil
		self.ssh_private_key = xml_element.elements['sshPrivateKey'].text
	end
	if xml_element.elements['sshPublicKey'] != nil
		self.ssh_public_key = xml_element.elements['sshPublicKey'].text
	end
	if xml_element.elements['sshKeyPassphrase'] != nil
		self.ssh_key_passphrase = xml_element.elements['sshKeyPassphrase'].text
	end
	if xml_element.elements['creatorId'] != nil
		self.creator_id = xml_element.elements['creatorId'].text
	end
	if xml_element.elements['entitledUsersEdit'] != nil
		self.entitled_users_edit = xml_element.elements['entitledUsersEdit'].text
	end
	if xml_element.elements['entitledUsersPublish'] != nil
		self.entitled_users_publish = xml_element.elements['entitledUsersPublish'].text
	end
	if xml_element.elements['ownerId'] != nil
		self.owner_id = xml_element.elements['ownerId'].text
	end
	if xml_element.elements['referenceId'] != nil
		self.reference_id = xml_element.elements['referenceId'].text
	end
	if xml_element.elements['templateEntryId'] != nil
		self.template_entry_id = xml_element.elements['templateEntryId'].text
	end
end