[[["易于理解","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"]],["最后更新时间 (UTC):2025-07-26。"],[[["\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. |"]]