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.
4602 4603 4604 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4602 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
4551 4552 4553 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4551 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
4557 4558 4559 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4557 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
4563 4564 4565 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4563 def label @label end |
#meeting_code ⇒ String
A meeting code for accessing the conference. Maximum 128 characters long.
Corresponds to the JSON property meetingCode
4568 4569 4570 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4568 def meeting_code @meeting_code end |
#passcode ⇒ String
A passcode for accessing the conference. Maximum 128 characters long.
Corresponds to the JSON property passcode
4573 4574 4575 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4573 def passcode @passcode end |
#password ⇒ String
A password for accessing the conference. Maximum 128 characters long.
Corresponds to the JSON property password
4578 4579 4580 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4578 def password @password end |
#pin ⇒ String
A PIN for accessing the conference. Maximum 128 characters long.
Corresponds to the JSON property pin
4583 4584 4585 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4583 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
4589 4590 4591 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4589 def region_code @region_code end |
#type ⇒ String
The type of the entry point. Required.
Corresponds to the JSON property type
4594 4595 4596 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4594 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
4600 4601 4602 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4600 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4607 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 |