Skip to content

Commit 66b7d0b

Browse files
Merge pull request #519 from HubSpot/feature/ObjectTypeIDsEnum
Add ObjectTypeIDs enum
2 parents cec2161 + d66dcfb commit 66b7d0b

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

lib/Enums/ObjectTypeIDs.php

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?php
2+
3+
namespace HubSpot\Enums;
4+
5+
class ObjectTypeIDs
6+
{
7+
public const COMPANIES = '0-2';
8+
public const CONTACTS = '0-1';
9+
public const DEALS = '0-3';
10+
public const TICKETS = '0-5';
11+
public const APPOINTMENTS = '0-421';
12+
public const CALLS = '0-48';
13+
public const COMMUNICATIONS = '0-18';
14+
public const COURSES = '0-410';
15+
public const EMAILS = '0-49';
16+
public const FEEDBACK_SUBMISSIONS = '0-19';
17+
public const INVOICES = '0-53';
18+
public const LEADS = '0-136';
19+
public const LINE_ITEMS = '0-8';
20+
public const LISTINGS = '0-420';
21+
public const MARKETING_EVENTS = '0-54';
22+
public const MEETINGS = '0-47';
23+
public const NOTES = '0-46';
24+
public const ORDERS = '0-123';
25+
public const PAYMENTS = '0-101';
26+
public const POSTAL_MAIL = '0-116 ';
27+
public const PRODUCTS = '0 ';
28+
public const QUOTES = '0-14';
29+
public const SERVICES = '0-162';
30+
public const SUBSCRIPTIONS = '0-69';
31+
public const TASKS = '0-27';
32+
public const USERS = '0-115';
33+
}

0 commit comments

Comments
 (0)