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.



4602
4603
4604
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4602

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)


4551
4552
4553
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4551

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>)


4557
4558
4559
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4557

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)


4563
4564
4565
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4563

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)


4568
4569
4570
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4568

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)


4573
4574
4575
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4573

def passcode
  @passcode
end

#passwordString

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

Returns:

  • (String)


4578
4579
4580
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4578

def password
  @password
end

#pinString

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

Returns:

  • (String)


4583
4584
4585
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4583

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)


4589
4590
4591
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4589

def region_code
  @region_code
end

#typeString

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

Returns:

  • (String)


4594
4595
4596
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4594

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)


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