Enum EntryPointFeature
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Einstiegspunkt-Funktion
Enum, das die Funktionen des Einstiegspunkts definiert, der von einem Konferenz-Add-on erstellt werden kann.
Wenn Sie ein Enum aufrufen möchten, rufen Sie die übergeordnete Klasse, den Namen und die Eigenschaft auf. Beispiel:
ConferenceDataService.EntryPointFeature.TOLL
.
Attribute
Attribut | Typ | Beschreibung |
UNKNOWN_FEATURE | Enum | Nicht verwenden. Hier nur aus Kompatibilitätsgründen als Standardwert. |
TOLL | Enum | Gilt nur für den Einstiegspunkt PHONE. Ein Anruf bei einer kostenpflichtigen Nummer wird dem Anrufer in Rechnung gestellt. Eine Nummer kann nicht gleichzeitig kostenpflichtig und kostenlos sein. |
TOLL_FREE | Enum | Gilt nur für den Einstiegspunkt PHONE. Für den Anrufer ist ein Anruf an eine gebührenfreie Nummer kostenlos. Eine Nummer kann nicht gleichzeitig kostenpflichtig und gebührenfrei sein. |
Sofern nicht anders angegeben, sind die Inhalte dieser Seite unter der Creative Commons Attribution 4.0 License und Codebeispiele unter der Apache 2.0 License lizenziert. Weitere Informationen finden Sie in den Websiterichtlinien von Google Developers. Java ist eine eingetragene Marke von Oracle und/oder seinen Partnern.
Zuletzt aktualisiert: 2025-07-26 (UTC).
[null,null,["Zuletzt aktualisiert: 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. |"]]