Class: Google::Apis::PeopleV1::PersonResponse

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

The response for a single person

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) ⇒ PersonResponse

Returns a new instance of PersonResponse



291
292
293
# File 'generated/google/apis/people_v1/classes.rb', line 291

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

Instance Attribute Details

#http_status_codeFixnum

HTTP 1.1 status code. Corresponds to the JSON property httpStatusCode

Returns:

  • (Fixnum)


280
281
282
# File 'generated/google/apis/people_v1/classes.rb', line 280

def http_status_code
  @http_status_code
end

#personGoogle::Apis::PeopleV1::Person

Information about a person merged from various data sources such as the authenticated user's contacts and profile data. Fields other than IDs, metadata, and group memberships are user-edited. Most fields can have multiple items. The items in a field have no guaranteed order, but each non-empty field is guaranteed to have exactly one field with metadata.primary set to true. NEXT_ID: 31 Corresponds to the JSON property person



275
276
277
# File 'generated/google/apis/people_v1/classes.rb', line 275

def person
  @person
end

#requested_resource_nameString

The original requested resource name. May be different than the resource name on the returned person. The resource name can change when adding or removing fields that link a contact and profile such as a verified email, verified phone number, or a profile URL. Corresponds to the JSON property requestedResourceName

Returns:

  • (String)


289
290
291
# File 'generated/google/apis/people_v1/classes.rb', line 289

def requested_resource_name
  @requested_resource_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



296
297
298
299
300
# File 'generated/google/apis/people_v1/classes.rb', line 296

def update!(**args)
  @person = args[:person] if args.key?(:person)
  @http_status_code = args[:http_status_code] if args.key?(:http_status_code)
  @requested_resource_name = args[:requested_resource_name] if args.key?(:requested_resource_name)
end