Method: Vonage::Meetings::Themes#delete
- Defined in:
- lib/vonage/meetings/themes.rb
#delete(theme_id:, force: false) ⇒ Response
Deprecated.
Delete an existing theme.
a default theme. (Defaults to false)
112 113 114 115 116 117 118 |
# File 'lib/vonage/meetings/themes.rb', line 112 def delete(theme_id:, force: false) logger.info('This method is deprecated and will be removed in a future release.') request( "/v1/meetings/themes/" + theme_id + "?force=#{force}", type: Delete ) end |