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.
9752 9753 9754 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9752 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
9742 9743 9744 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9742 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
9750 9751 9752 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9750 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9757 9758 9759 9760 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 9757 def update!(**args) @sip_access_code = args[:sip_access_code] if args.key?(:sip_access_code) @uri = args[:uri] if args.key?(:uri) end |