Class ConferenceData
কনফারেন্স ডেটা সমস্ত সম্মেলন-সম্পর্কিত তথ্যের জন্য ধারক।
var conferenceId;
// Set the conference ID, that is, the identifier your system creates for the meeting.
var entryPoint = ConferenceDataService.newEntryPoint();
// Finish building the entry point ...
var conferenceParameter = ConferenceDataService.newConferenceParameter();
// Finish building the parameter ...
var conferenceData = ConferenceDataService.newConferenceDataBuilder()
.setConferenceId(conferenceId);
.addEntryPoint(entryPoint)
.addConferenceParameter(conferenceParameter)
.build();
পদ্ধতি
পদ্ধতি | রিটার্ন টাইপ | সংক্ষিপ্ত বিবরণ |
---|
printJson() | String | এই বস্তুর JSON উপস্থাপনা প্রিন্ট করে। |
বিস্তারিত ডকুমেন্টেশন
printJson()
এই বস্তুর JSON উপস্থাপনা প্রিন্ট করে। এটি শুধুমাত্র ডিবাগ করার জন্য।
প্রত্যাবর্তন
String
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2024-11-13 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2024-11-13 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["`ConferenceData` objects store all conference-related information, including ID, entry points, and parameters."],["You can create a `ConferenceData` object using a builder pattern, setting properties like conference ID, entry points, and parameters."],["The `printJson()` method provides a JSON representation of the `ConferenceData` object, useful for debugging purposes."]]],[]]