Class: Kaltura::KalturaIntegrationSetting
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaIntegrationSetting
- Defined in:
- lib/kaltura_plugins/kaltura_vendor_client_plugin.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#account_id ⇒ Object
Returns the value of attribute account_id.
-
#conversion_profile_id ⇒ Object
Returns the value of attribute conversion_profile_id.
-
#create_user_if_not_exist ⇒ Object
Returns the value of attribute create_user_if_not_exist.
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#default_user_id ⇒ Object
Returns the value of attribute default_user_id.
-
#deletion_policy ⇒ Object
Returns the value of attribute deletion_policy.
-
#enable_meeting_chat ⇒ Object
Returns the value of attribute enable_meeting_chat.
-
#enable_meeting_upload ⇒ Object
Returns the value of attribute enable_meeting_upload.
-
#handle_participants_mode ⇒ Object
Returns the value of attribute handle_participants_mode.
-
#id ⇒ Object
Returns the value of attribute id.
-
#partner_id ⇒ Object
Returns the value of attribute partner_id.
-
#status ⇒ Object
Returns the value of attribute status.
-
#updated_at ⇒ Object
Returns the value of attribute updated_at.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#account_id ⇒ Object
Returns the value of attribute account_id.
55 56 57 |
# File 'lib/kaltura_plugins/kaltura_vendor_client_plugin.rb', line 55 def account_id @account_id end |
#conversion_profile_id ⇒ Object
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_exist ⇒ Object
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_at ⇒ Object
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_id ⇒ Object
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_policy ⇒ Object
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 |
#enable_meeting_chat ⇒ Object
Returns the value of attribute enable_meeting_chat.
64 65 66 |
# File 'lib/kaltura_plugins/kaltura_vendor_client_plugin.rb', line 64 def enable_meeting_chat @enable_meeting_chat end |
#enable_meeting_upload ⇒ Object
Returns the value of attribute enable_meeting_upload.
63 64 65 |
# File 'lib/kaltura_plugins/kaltura_vendor_client_plugin.rb', line 63 def enable_meeting_upload @enable_meeting_upload end |
#handle_participants_mode ⇒ Object
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 |
#id ⇒ Object
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_id ⇒ Object
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 |
#status ⇒ Object
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_at ⇒ Object
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
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 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
# File 'lib/kaltura_plugins/kaltura_vendor_client_plugin.rb', line 94 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.account_id = 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 if xml_element.elements['enableMeetingUpload'] != nil self.enable_meeting_upload = xml_element.elements['enableMeetingUpload'].text end if xml_element.elements['enableMeetingChat'] != nil self.enable_meeting_chat = xml_element.elements['enableMeetingChat'].text end end |