Class: Google::Apis::CloudsearchV1::AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupEntryPointMarkup
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupEntryPointMarkup
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
A way to join the conference.
Instance Attribute Summary collapse
-
#access_code ⇒ String
An access code for accessing the conference.
-
#features ⇒ Array<String>
Features of the entry point, such as being toll or toll-free.
-
#label ⇒ String
The label of the entry point to display to the user.
-
#meeting_code ⇒ String
A meeting code for accessing the conference.
-
#passcode ⇒ String
A passcode for accessing the conference.
-
#password ⇒ String
A password for accessing the conference.
-
#pin ⇒ String
A PIN for accessing the conference.
-
#region_code ⇒ String
The CLDR/ISO 3166 region code for the country associated with this entry point.
-
#type ⇒ String
The type of the entry point.
-
#uri ⇒ String
A URI for joining the conference.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupEntryPointMarkup
constructor
A new instance of AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupEntryPointMarkup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupEntryPointMarkup
Returns a new instance of AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupEntryPointMarkup.
4544 4545 4546 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4544 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_code ⇒ String
An access code for accessing the conference. Maximum 128 characters long.
Corresponds to the JSON property accessCode
4493 4494 4495 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4493 def access_code @access_code end |
#features ⇒ Array<String>
Features of the entry point, such as being toll or toll-free. One entry point
can have multiple features.
Corresponds to the JSON property features
4499 4500 4501 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4499 def features @features end |
#label ⇒ String
The label of the entry point to display to the user. Maximum 512 characters
long.
Corresponds to the JSON property label
4505 4506 4507 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4505 def label @label end |
#meeting_code ⇒ String
A meeting code for accessing the conference. Maximum 128 characters long.
Corresponds to the JSON property meetingCode
4510 4511 4512 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4510 def meeting_code @meeting_code end |
#passcode ⇒ String
A passcode for accessing the conference. Maximum 128 characters long.
Corresponds to the JSON property passcode
4515 4516 4517 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4515 def passcode @passcode end |
#password ⇒ String
A password for accessing the conference. Maximum 128 characters long.
Corresponds to the JSON property password
4520 4521 4522 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4520 def password @password end |
#pin ⇒ String
A PIN for accessing the conference. Maximum 128 characters long.
Corresponds to the JSON property pin
4525 4526 4527 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4525 def pin @pin end |
#region_code ⇒ String
The CLDR/ISO 3166 region code for the country associated with this entry point.
Applicable only to Type.PHONE
.
Corresponds to the JSON property regionCode
4531 4532 4533 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4531 def region_code @region_code end |
#type ⇒ String
The type of the entry point. Required.
Corresponds to the JSON property type
4536 4537 4538 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4536 def type @type end |
#uri ⇒ String
A URI for joining the conference. Supports tel: and http(s): and should be at
most 1300 characters long. Required.
Corresponds to the JSON property uri
4542 4543 4544 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4542 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4549 def update!(**args) @access_code = args[:access_code] if args.key?(:access_code) @features = args[:features] if args.key?(:features) @label = args[:label] if args.key?(:label) @meeting_code = args[:meeting_code] if args.key?(:meeting_code) @passcode = args[:passcode] if args.key?(:passcode) @password = args[:password] if args.key?(:password) @pin = args[:pin] if args.key?(:pin) @region_code = args[:region_code] if args.key?(:region_code) @type = args[:type] if args.key?(:type) @uri = args[:uri] if args.key?(:uri) end |