সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
এন্ট্রি পয়েন্ট বৈশিষ্ট্য
Enum যা এন্ট্রি পয়েন্টের বৈশিষ্ট্যগুলিকে সংজ্ঞায়িত করে যা একটি কনফারেন্সিং অ্যাড-অন দ্বারা তৈরি করা যেতে পারে।
একটি enum কল করার জন্য, আপনি তার পিতামাতার শ্রেণী, নাম এবং সম্পত্তি কল করুন। উদাহরণস্বরূপ, ConferenceDataService.EntryPointFeature.TOLL ।
বৈশিষ্ট্য
সম্পত্তি
টাইপ
বর্ণনা
UNKNOWN_FEATURE
Enum
ব্যবহার করবেন না। এখানে শুধুমাত্র সামঞ্জস্যতার কারণে একটি ডিফল্ট মান হিসাবে।
TOLL
Enum
শুধুমাত্র PHONE এন্ট্রি পয়েন্টে প্রযোজ্য। একটি টোল নম্বরে একটি কল কলিং পার্টিকে চার্জ করা হয়। একটি নম্বর একই সময়ে টোল এবং টোল-ফ্রি হতে পারে না।
TOLL_FREE
Enum
শুধুমাত্র PHONE এন্ট্রি পয়েন্টে প্রযোজ্য। কলিং পার্টির জন্য, একটি টোল-ফ্রি নম্বরে একটি কল বিনামূল্যে। একটি নম্বর একই সময়ে টোল এবং টোল-ফ্রি হতে পারে না।
[[["সহজে বোঝা যায়","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-25 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. |"]]