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.
4217 4218 4219 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4217 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
4166 4167 4168 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4166 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
4172 4173 4174 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4172 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
4178 4179 4180 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4178 def label @label end |
#meeting_code ⇒ String
A meeting code for accessing the conference. Maximum 128 characters long.
Corresponds to the JSON property meetingCode
4183 4184 4185 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4183 def meeting_code @meeting_code end |
#passcode ⇒ String
A passcode for accessing the conference. Maximum 128 characters long.
Corresponds to the JSON property passcode
4188 4189 4190 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4188 def passcode @passcode end |
#password ⇒ String
A password for accessing the conference. Maximum 128 characters long.
Corresponds to the JSON property password
4193 4194 4195 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4193 def password @password end |
#pin ⇒ String
A PIN for accessing the conference. Maximum 128 characters long.
Corresponds to the JSON property pin
4198 4199 4200 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4198 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
4204 4205 4206 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4204 def region_code @region_code end |
#type ⇒ String
The type of the entry point. Required.
Corresponds to the JSON property type
4209 4210 4211 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4209 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
4215 4216 4217 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4215 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4222 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 |