Class: Google::Apis::PeopleV1::SipAddress
- Inherits:
-
Object
- Object
- Google::Apis::PeopleV1::SipAddress
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/people_v1/classes.rb,
generated/google/apis/people_v1/representations.rb,
generated/google/apis/people_v1/representations.rb
Overview
A person's SIP address. Session Initial Protocol addresses are used for VoIP communications to make voice or video calls over the internet.
Instance Attribute Summary collapse
-
#formatted_type ⇒ String
Output only.
-
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
-
#type ⇒ String
The type of the SIP address.
-
#value ⇒ String
The SIP address in the RFC 3261 19.1 SIP URI format.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SipAddress
constructor
A new instance of SipAddress.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SipAddress
Returns a new instance of SipAddress.
2327 2328 2329 |
# File 'generated/google/apis/people_v1/classes.rb', line 2327 def initialize(**args) update!(**args) end |
Instance Attribute Details
#formatted_type ⇒ String
Output only. The type of the SIP address translated and formatted in the
viewer's account locale or the Accept-Language
HTTP header locale.
Corresponds to the JSON property formattedType
2308 2309 2310 |
# File 'generated/google/apis/people_v1/classes.rb', line 2308 def formatted_type @formatted_type end |
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
2313 2314 2315 |
# File 'generated/google/apis/people_v1/classes.rb', line 2313 def @metadata end |
#type ⇒ String
The type of the SIP address. The type can be custom or or one of these
predefined values: * home
* work
* mobile
* other
Corresponds to the JSON property type
2319 2320 2321 |
# File 'generated/google/apis/people_v1/classes.rb', line 2319 def type @type end |
#value ⇒ String
The SIP address in the RFC 3261 19.1 SIP URI format.
Corresponds to the JSON property value
2325 2326 2327 |
# File 'generated/google/apis/people_v1/classes.rb', line 2325 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2332 2333 2334 2335 2336 2337 |
# File 'generated/google/apis/people_v1/classes.rb', line 2332 def update!(**args) @formatted_type = args[:formatted_type] if args.key?(:formatted_type) @metadata = args[:metadata] if args.key?(:metadata) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end |