Class: Kaltura::KalturaIntegrationSetting

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

Direct Known Subclasses

KalturaZoomIntegrationSetting

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

#account_idObject

Returns the value of attribute account_id.



55
56
57
# File 'lib/kaltura_plugins/kaltura_vendor_client_plugin.rb', line 55

def 
  @account_id
end

#conversion_profile_idObject

Returns the value of attribute conversion_profile_id.



57
58
59
# File 'lib/kaltura_plugins/kaltura_vendor_client_plugin.rb', line 57

def conversion_profile_id
  @conversion_profile_id
end

#create_user_if_not_existObject

Returns the value of attribute create_user_if_not_exist.



56
57
58
# File 'lib/kaltura_plugins/kaltura_vendor_client_plugin.rb', line 56

def create_user_if_not_exist
  @create_user_if_not_exist
end

#created_atObject

Returns the value of attribute created_at.



60
61
62
# File 'lib/kaltura_plugins/kaltura_vendor_client_plugin.rb', line 60

def created_at
  @created_at
end

#default_user_idObject

Returns the value of attribute default_user_id.



54
55
56
# File 'lib/kaltura_plugins/kaltura_vendor_client_plugin.rb', line 54

def default_user_id
  @default_user_id
end

#deletion_policyObject

Returns the value of attribute deletion_policy.



59
60
61
# File 'lib/kaltura_plugins/kaltura_vendor_client_plugin.rb', line 59

def deletion_policy
  @deletion_policy
end

#handle_participants_modeObject

Returns the value of attribute handle_participants_mode.



58
59
60
# File 'lib/kaltura_plugins/kaltura_vendor_client_plugin.rb', line 58

def handle_participants_mode
  @handle_participants_mode
end

#idObject

Returns the value of attribute id.



52
53
54
# File 'lib/kaltura_plugins/kaltura_vendor_client_plugin.rb', line 52

def id
  @id
end

#partner_idObject

Returns the value of attribute partner_id.



62
63
64
# File 'lib/kaltura_plugins/kaltura_vendor_client_plugin.rb', line 62

def partner_id
  @partner_id
end

#statusObject

Returns the value of attribute status.



53
54
55
# File 'lib/kaltura_plugins/kaltura_vendor_client_plugin.rb', line 53

def status
  @status
end

#updated_atObject

Returns the value of attribute updated_at.



61
62
63
# File 'lib/kaltura_plugins/kaltura_vendor_client_plugin.rb', line 61

def updated_at
  @updated_at
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# File 'lib/kaltura_plugins/kaltura_vendor_client_plugin.rb', line 86

def from_xml(xml_element)
	super
	if xml_element.elements['id'] != nil
		self.id = xml_element.elements['id'].text
	end
	if xml_element.elements['status'] != nil
		self.status = xml_element.elements['status'].text
	end
	if xml_element.elements['defaultUserId'] != nil
		self.default_user_id = xml_element.elements['defaultUserId'].text
	end
	if xml_element.elements['accountId'] != nil
		self. = xml_element.elements['accountId'].text
	end
	if xml_element.elements['createUserIfNotExist'] != nil
		self.create_user_if_not_exist = xml_element.elements['createUserIfNotExist'].text
	end
	if xml_element.elements['conversionProfileId'] != nil
		self.conversion_profile_id = xml_element.elements['conversionProfileId'].text
	end
	if xml_element.elements['handleParticipantsMode'] != nil
		self.handle_participants_mode = xml_element.elements['handleParticipantsMode'].text
	end
	if xml_element.elements['deletionPolicy'] != nil
		self.deletion_policy = xml_element.elements['deletionPolicy'].text
	end
	if xml_element.elements['createdAt'] != nil
		self.created_at = xml_element.elements['createdAt'].text
	end
	if xml_element.elements['updatedAt'] != nil
		self.updated_at = xml_element.elements['updatedAt'].text
	end
	if xml_element.elements['partnerId'] != nil
		self.partner_id = xml_element.elements['partnerId'].text
	end
end