Class: Google::Apis::CloudsearchV1::AppsExtensionsMarkupCalendarClientActionMarkupConferenceDataMarkupEntryPointMarkup

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_codeString

An access code for accessing the conference. Maximum 128 characters long. Corresponds to the JSON property accessCode

Returns:

  • (String)


4166
4167
4168
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4166

def access_code
  @access_code
end

#featuresArray<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

Returns:

  • (Array<String>)


4172
4173
4174
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4172

def features
  @features
end

#labelString

The label of the entry point to display to the user. Maximum 512 characters long. Corresponds to the JSON property label

Returns:

  • (String)


4178
4179
4180
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4178

def label
  @label
end

#meeting_codeString

A meeting code for accessing the conference. Maximum 128 characters long. Corresponds to the JSON property meetingCode

Returns:

  • (String)


4183
4184
4185
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4183

def meeting_code
  @meeting_code
end

#passcodeString

A passcode for accessing the conference. Maximum 128 characters long. Corresponds to the JSON property passcode

Returns:

  • (String)


4188
4189
4190
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4188

def passcode
  @passcode
end

#passwordString

A password for accessing the conference. Maximum 128 characters long. Corresponds to the JSON property password

Returns:

  • (String)


4193
4194
4195
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4193

def password
  @password
end

#pinString

A PIN for accessing the conference. Maximum 128 characters long. Corresponds to the JSON property pin

Returns:

  • (String)


4198
4199
4200
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4198

def pin
  @pin
end

#region_codeString

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

Returns:

  • (String)


4204
4205
4206
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4204

def region_code
  @region_code
end

#typeString

The type of the entry point. Required. Corresponds to the JSON property type

Returns:

  • (String)


4209
4210
4211
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4209

def type
  @type
end

#uriString

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

Returns:

  • (String)


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