=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::SubscriberStateChangesApi # Automatically generated by openapi-generator (https://openapi-generator.tech) # Please update as you see appropriate describe 'SubscriberStateChangesApi' do before do # run before each test @api_instance = Hubspot::Marketing::Events::SubscriberStateChangesApi.new end after do # run after each test end describe 'test an instance of SubscriberStateChangesApi' do it 'should create an instance of SubscriberStateChangesApi' do expect(@api_instance).to be_instance_of(Hubspot::Marketing::Events::SubscriberStateChangesApi) end end # unit tests for do_email_upsert_by_id # Record # Record a subscription state between multiple HubSpot contacts and a marketing event, using contact email addresses. # @param external_event_id The id of the marketing event # @param subscriber_state The new subscriber state for the HubSpot contacts and the specified marketing event # @param external_account_id The account id associated with the marketing event # @param batch_input_marketing_event_email_subscriber The details of the contacts to subscribe to the event # @param [Hash] opts the optional parameters # @return [Error] describe 'do_email_upsert_by_id 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 do_upsert_by_id # Record # Record a subscription state between multiple HubSpot contacts and a marketing event, using HubSpot contact ids. # @param external_event_id The id of the marketing event # @param subscriber_state The new subscriber state for the HubSpot contacts and the specified marketing event # @param external_account_id The account id associated with the marketing event # @param batch_input_marketing_event_subscriber The details of the contacts to subscribe to the event # @param [Hash] opts the optional parameters # @return [Error] describe 'do_upsert_by_id test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end