Class: Google::Apis::AnalyticsV3::HashClientIdResponse
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsV3::HashClientIdResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/analytics_v3/classes.rb,
generated/google/apis/analytics_v3/representations.rb,
generated/google/apis/analytics_v3/representations.rb
Overview
JSON template for a hash Client Id response resource.
Instance Attribute Summary collapse
-
#client_id ⇒ String
Corresponds to the JSON property
clientId
. -
#hashed_client_id ⇒ String
Corresponds to the JSON property
hashedClientId
. -
#kind ⇒ String
Corresponds to the JSON property
kind
. -
#web_property_id ⇒ String
Corresponds to the JSON property
webPropertyId
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HashClientIdResponse
constructor
A new instance of HashClientIdResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ HashClientIdResponse
Returns a new instance of HashClientIdResponse.
3347 3348 3349 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3347 def initialize(**args) update!(**args) end |
Instance Attribute Details
#client_id ⇒ String
Corresponds to the JSON property clientId
3330 3331 3332 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3330 def client_id @client_id end |
#hashed_client_id ⇒ String
Corresponds to the JSON property hashedClientId
3335 3336 3337 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3335 def hashed_client_id @hashed_client_id end |
#kind ⇒ String
Corresponds to the JSON property kind
3340 3341 3342 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3340 def kind @kind end |
#web_property_id ⇒ String
Corresponds to the JSON property webPropertyId
3345 3346 3347 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3345 def web_property_id @web_property_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3352 3353 3354 3355 3356 3357 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3352 def update!(**args) @client_id = args[:client_id] if args.key?(:client_id) @hashed_client_id = args[:hashed_client_id] if args.key?(:hashed_client_id) @kind = args[:kind] if args.key?(:kind) @web_property_id = args[:web_property_id] if args.key?(:web_property_id) end |