Method: Vonage::Meetings::Themes#create
- Defined in:
- lib/vonage/meetings/themes.rb
#create(main_color:, brand_text:, **params) ⇒ Response
Deprecated.
Create a new theme.
59 60 61 62 63 64 65 66 |
# File 'lib/vonage/meetings/themes.rb', line 59 def create(main_color:, brand_text:, **params) logger.info('This method is deprecated and will be removed in a future release.') request( "/v1/meetings/themes", params: params.merge(main_color: main_color, brand_text: brand_text), type: Post ) end |