Class: Kaltura::KalturaFileSyncDescriptor

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.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

#file_sync_local_pathObject

Returns the value of attribute file_sync_local_path.



2297
2298
2299
# File 'lib/kaltura_types.rb', line 2297

def file_sync_local_path
  @file_sync_local_path
end

#file_sync_object_sub_typeObject

Returns the value of attribute file_sync_object_sub_type.



2301
2302
2303
# File 'lib/kaltura_types.rb', line 2301

def file_sync_object_sub_type
  @file_sync_object_sub_type
end

#file_sync_remote_urlObject

The translated path as used by the scheduler



2300
2301
2302
# File 'lib/kaltura_types.rb', line 2300

def file_sync_remote_url
  @file_sync_remote_url
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



2307
2308
2309
2310
2311
2312
# File 'lib/kaltura_types.rb', line 2307

def from_xml(xml_element)
	super
	self.file_sync_local_path = xml_element.elements['fileSyncLocalPath'].text
	self.file_sync_remote_url = xml_element.elements['fileSyncRemoteUrl'].text
	self.file_sync_object_sub_type = xml_element.elements['fileSyncObjectSubType'].text
end