=begin #Marketing Events Extension #These APIs allow you to interact with HubSpot's Marketing Events Extension. It allows you to: * Create, Read or update Marketing Event information in HubSpot * Specify whether a HubSpot contact has registered, attended or cancelled a registration to a Marketing Event. * Specify a URL that can be called to get the details of a Marketing Event. The version of the OpenAPI document: v3 Generated by: https://openapi-generator.tech OpenAPI Generator version: 4.3.1 =end require 'spec_helper' require 'json' # Unit tests for Hubspot::Marketing::Events::SettingsApi # Automatically generated by openapi-generator (https://openapi-generator.tech) # Please update as you see appropriate describe 'SettingsApi' do before do # run before each test @api_instance = Hubspot::Marketing::Events::SettingsApi.new end after do # run after each test end describe 'test an instance of SettingsApi' do it 'should create an instance of SettingsApi' do expect(@api_instance).to be_instance_of(Hubspot::Marketing::Events::SettingsApi) end end # unit tests for create # Update the application settings # Create or update the current settings for the application. # @param app_id The id of the application to update the settings for. # @param event_detail_settings_url The new application settings # @param [Hash] opts the optional parameters # @return [EventDetailSettings] describe 'create test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end # unit tests for get_all # Retrieve the application settings # Retrieve the current settings for the application. # @param app_id The id of the application to retrieve the settings for. # @param [Hash] opts the optional parameters # @return [EventDetailSettings] describe 'get_all test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end