Skip to content

Commit c2155bc

Browse files
Merge pull request #288 from HubSpot/codegen/marketing
Codegen: Marketing
2 parents 3b6f7aa + 5380daf commit c2155bc

File tree

111 files changed

+5454
-4757
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+5454
-4757
lines changed

hubspot/marketing/events/__init__.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# flake8: noqa
44

55
"""
6-
Marketing Events Extension
6+
Marketing Events
77
88
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. # noqa: E501
99
@@ -18,9 +18,12 @@
1818

1919
# import apis into sdk package
2020
from hubspot.marketing.events.api.attendance_subscriber_state_changes_api import AttendanceSubscriberStateChangesApi
21+
from hubspot.marketing.events.api.basic_api import BasicApi
22+
from hubspot.marketing.events.api.batch_api import BatchApi
2123
from hubspot.marketing.events.api.marketing_events_external_api import MarketingEventsExternalApi
2224
from hubspot.marketing.events.api.search_api import SearchApi
23-
from hubspot.marketing.events.api.settings_external_api import SettingsExternalApi
25+
from hubspot.marketing.events.api.settings_api import SettingsApi
26+
from hubspot.marketing.events.api.subscriber_state_changes_api import SubscriberStateChangesApi
2427

2528
# import ApiClient
2629
from hubspot.marketing.events.api_client import ApiClient
@@ -42,7 +45,6 @@
4245
from hubspot.marketing.events.models.batch_response_subscriber_vid_response import BatchResponseSubscriberVidResponse
4346
from hubspot.marketing.events.models.collection_response_marketing_event_external_unique_identifier_no_paging import CollectionResponseMarketingEventExternalUniqueIdentifierNoPaging
4447
from hubspot.marketing.events.models.error import Error
45-
from hubspot.marketing.events.models.error_category import ErrorCategory
4648
from hubspot.marketing.events.models.error_detail import ErrorDetail
4749
from hubspot.marketing.events.models.event_detail_settings import EventDetailSettings
4850
from hubspot.marketing.events.models.event_detail_settings_url import EventDetailSettingsUrl

hubspot/marketing/events/api/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
# import apis into api package
66
from hubspot.marketing.events.api.attendance_subscriber_state_changes_api import AttendanceSubscriberStateChangesApi
7+
from hubspot.marketing.events.api.basic_api import BasicApi
8+
from hubspot.marketing.events.api.batch_api import BatchApi
79
from hubspot.marketing.events.api.marketing_events_external_api import MarketingEventsExternalApi
810
from hubspot.marketing.events.api.search_api import SearchApi
9-
from hubspot.marketing.events.api.settings_external_api import SettingsExternalApi
11+
from hubspot.marketing.events.api.settings_api import SettingsApi
12+
from hubspot.marketing.events.api.subscriber_state_changes_api import SubscriberStateChangesApi

hubspot/marketing/events/api/attendance_subscriber_state_changes_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

33
"""
4-
Marketing Events Extension
4+
Marketing Events
55
66
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. # noqa: E501
77
@@ -188,7 +188,7 @@ def create_with_http_info(self, external_event_id, subscriber_state, batch_input
188188
def create_by_email(self, external_event_id, subscriber_state, batch_input_marketing_event_email_subscriber, **kwargs): # noqa: E501
189189
"""Record # noqa: E501
190190
191-
Record a subscription state between multiple HubSpot contacts and a marketing event, using contact email addresses. If contact is not present it will be automatically created. If you set params # noqa: E501
191+
Record a subscription state between multiple HubSpot contacts and a marketing event, using contact email addresses. If contact is not present it will be automatically created. # noqa: E501
192192
This method makes a synchronous HTTP request by default. To make an
193193
asynchronous HTTP request, please pass async_req=True
194194
@@ -224,7 +224,7 @@ def create_by_email(self, external_event_id, subscriber_state, batch_input_marke
224224
def create_by_email_with_http_info(self, external_event_id, subscriber_state, batch_input_marketing_event_email_subscriber, **kwargs): # noqa: E501
225225
"""Record # noqa: E501
226226
227-
Record a subscription state between multiple HubSpot contacts and a marketing event, using contact email addresses. If contact is not present it will be automatically created. If you set params # noqa: E501
227+
Record a subscription state between multiple HubSpot contacts and a marketing event, using contact email addresses. If contact is not present it will be automatically created. # noqa: E501
228228
This method makes a synchronous HTTP request by default. To make an
229229
asynchronous HTTP request, please pass async_req=True
230230

0 commit comments

Comments
 (0)