Class: Google::Apis::PeopleV1::ClientData
- Inherits:
-
Object
- Object
- Google::Apis::PeopleV1::ClientData
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/people_v1/classes.rb,
lib/google/apis/people_v1/representations.rb,
lib/google/apis/people_v1/representations.rb
Overview
Arbitrary client data that is populated by clients. Duplicate keys and values are allowed.
Instance Attribute Summary collapse
-
#key ⇒ String
The client specified key of the client data.
-
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
-
#value ⇒ String
The client specified value of the client data.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ClientData
constructor
A new instance of ClientData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ClientData
Returns a new instance of ClientData.
473 474 475 |
# File 'lib/google/apis/people_v1/classes.rb', line 473 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
The client specified key of the client data.
Corresponds to the JSON property key
461 462 463 |
# File 'lib/google/apis/people_v1/classes.rb', line 461 def key @key end |
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
466 467 468 |
# File 'lib/google/apis/people_v1/classes.rb', line 466 def @metadata end |
#value ⇒ String
The client specified value of the client data.
Corresponds to the JSON property value
471 472 473 |
# File 'lib/google/apis/people_v1/classes.rb', line 471 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
478 479 480 481 482 |
# File 'lib/google/apis/people_v1/classes.rb', line 478 def update!(**args) @key = args[:key] if args.key?(:key) @metadata = args[:metadata] if args.key?(:metadata) @value = args[:value] if args.key?(:value) end |