class Google::Apis::PeopleV1::SipAddress
A person's SIP address. Session Initial Protocol addresses are used for VoIP communications to make voice or video calls over the internet.
Attributes
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` @return [String]
Metadata about a field. Corresponds to the JSON property `metadata` @return [Google::Apis::PeopleV1::FieldMetadata]
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` @return [String]
The SIP address in the [RFC 3261 19.1](tools.ietf.org/html/rfc3261# section-19.1) SIP URI format. Corresponds to the JSON property `value` @return [String]
Public Class Methods
# File lib/google/apis/people_v1/classes.rb, line 2618 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/people_v1/classes.rb, line 2623 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