[[["เข้าใจง่าย","easyToUnderstand","thumb-up"],["แก้ปัญหาของฉันได้","solvedMyProblem","thumb-up"],["อื่นๆ","otherUp","thumb-up"]],[["ไม่มีข้อมูลที่ฉันต้องการ","missingTheInformationINeed","thumb-down"],["ซับซ้อนเกินไป/มีหลายขั้นตอนมากเกินไป","tooComplicatedTooManySteps","thumb-down"],["ล้าสมัย","outOfDate","thumb-down"],["ปัญหาเกี่ยวกับการแปล","translationIssue","thumb-down"],["ตัวอย่าง/ปัญหาเกี่ยวกับโค้ด","samplesCodeIssue","thumb-down"],["อื่นๆ","otherDown","thumb-down"]],["อัปเดตล่าสุด 2025-07-26 UTC"],[[["\u003cp\u003e\u003ccode\u003eEntryPointFeature\u003c/code\u003e is an enum used to define features of conferencing add-on entry points.\u003c/p\u003e\n"],["\u003cp\u003eThis enum includes properties like \u003ccode\u003eTOLL\u003c/code\u003e and \u003ccode\u003eTOLL_FREE\u003c/code\u003e which apply specifically to phone entry points, determining call charges for the calling party.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eUNKNOWN_FEATURE\u003c/code\u003e is present for compatibility but should not be actively used.\u003c/p\u003e\n"],["\u003cp\u003eThe enum is called using the syntax: \u003ccode\u003eConferenceDataService.EntryPointFeature.[property]\u003c/code\u003e, for example, \u003ccode\u003eConferenceDataService.EntryPointFeature.TOLL\u003c/code\u003e.\u003c/p\u003e\n"]]],["`EntryPointFeature` is an Enum defining features for conferencing add-on entry points. It has three properties: `UNKNOWN_FEATURE` (a default for compatibility), `TOLL` (for PHONE entry points where the caller is charged), and `TOLL_FREE` (for free PHONE entry points). A number cannot be both toll and toll-free. To access these properties use the parent class name, like this: `ConferenceDataService.EntryPointFeature.TOLL`\n"],null,["# Enum EntryPointFeature\n\nEntryPointFeature\n\nEnum that defines the features of the entry point that can be created by a conferencing add-on.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nConferenceDataService.EntryPointFeature.TOLL`. \n\n### Properties\n\n| Property | Type | Description |\n|-------------------|--------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `UNKNOWN_FEATURE` | `Enum` | Do not use. Here only as a default value for compatibility reasons. |\n| `TOLL` | `Enum` | Applies to PHONE entry point only. A call to a toll number is charged to the calling party. A number can't be toll and toll-free at the same time. |\n| `TOLL_FREE` | `Enum` | Applies to PHONE entry point only. For the calling party, a call to a toll-free number is free of charge. A number can't be toll and toll-free at the same time. |"]]