Class: Google::Apis::CloudsearchV1::GatewaySipAccess
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::GatewaySipAccess
- 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
Details how to join the conference via a SIP gateway.
Instance Attribute Summary collapse
-
#sip_access_code ⇒ String
Permanent numeric code for manual entry on specially configured devices, currently the same as the PSTN "Universal pin".
-
#uri ⇒ String
The SIP URI the conference can be reached through.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GatewaySipAccess
constructor
A new instance of GatewaySipAccess.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GatewaySipAccess
Returns a new instance of GatewaySipAccess.
9816 9817 9818 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9816 def initialize(**args) update!(**args) end |
Instance Attribute Details
#sip_access_code ⇒ String
Permanent numeric code for manual entry on specially configured devices,
currently the same as the PSTN "Universal pin".
Corresponds to the JSON property sipAccessCode
9806 9807 9808 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9806 def sip_access_code @sip_access_code end |
#uri ⇒ String
The SIP URI the conference can be reached through. The string is on one of the
formats: "sip:@" "sips:@" where currently is the 13-digit universal pin (with
the future option to support using a Meet meeting code as well), and is a
valid address to be resolved using a DNS SRV lookup, or a dotted quad.
Corresponds to the JSON property uri
9814 9815 9816 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9814 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9821 9822 9823 9824 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9821 def update!(**args) @sip_access_code = args[:sip_access_code] if args.key?(:sip_access_code) @uri = args[:uri] if args.key?(:uri) end |