Class: Google::Apis::PeopleV1::Url

Inherits:
Object
  • Object
show all
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 associated URLs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Url

Returns a new instance of Url



2180
2181
2182
# File 'generated/google/apis/people_v1/classes.rb', line 2180

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#formatted_typeString

The read-only type of the URL translated and formatted in the viewer's account locale or the Accept-Language HTTP header locale. Corresponds to the JSON property formattedType

Returns:

  • (String)


2153
2154
2155
# File 'generated/google/apis/people_v1/classes.rb', line 2153

def formatted_type
  @formatted_type
end

#metadataGoogle::Apis::PeopleV1::FieldMetadata

Metadata about a field. Corresponds to the JSON property metadata



2158
2159
2160
# File 'generated/google/apis/people_v1/classes.rb', line 2158

def 
  @metadata
end

#typeString

The type of the URL. The type can be custom or predefined. Possible values include, but are not limited to, the following:

  • home
  • work
  • blog
  • profile
  • homePage
  • ftp
  • reservations
  • appInstallPage: website for a Google+ application.
  • other Corresponds to the JSON property type

Returns:

  • (String)


2173
2174
2175
# File 'generated/google/apis/people_v1/classes.rb', line 2173

def type
  @type
end

#valueString

The URL. Corresponds to the JSON property value

Returns:

  • (String)


2178
2179
2180
# File 'generated/google/apis/people_v1/classes.rb', line 2178

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2185
2186
2187
2188
2189
2190
# File 'generated/google/apis/people_v1/classes.rb', line 2185

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