Struct google_people1::SipAddress[][src]

pub struct SipAddress {
    pub formatted_type: Option<String>,
    pub type_: Option<String>,
    pub value: Option<String>,
    pub metadata: Option<FieldMetadata>,
}

A person's SIP address. Session Initial Protocol addresses are used for VoIP communications to make voice or video calls over the internet.

This type is not used in any activity, and only used as part of another schema.

Fields

The read-only type of the SIP address translated and formatted in the viewer's account locale or the Accept-Language HTTP header locale.

The type of the SIP address. The type can be custom or or one of these predefined values:

  • home
  • work
  • mobile
  • other

The SIP address in the RFC 3261 19.1 SIP URI format.

Metadata about the SIP address.

Trait Implementations

impl Default for SipAddress
[src]

Returns the "default value" for a type. Read more

impl Clone for SipAddress
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SipAddress
[src]

Formats the value using the given formatter. Read more

impl Part for SipAddress
[src]

Auto Trait Implementations

impl Send for SipAddress

impl Sync for SipAddress