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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ HashClientIdResponse
Returns a new instance of HashClientIdResponse
3441 3442 3443 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3441 def initialize(**args) update!(**args) end |
Instance Attribute Details
#client_id ⇒ String
Corresponds to the JSON property clientId
3424 3425 3426 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3424 def client_id @client_id end |
#hashed_client_id ⇒ String
Corresponds to the JSON property hashedClientId
3429 3430 3431 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3429 def hashed_client_id @hashed_client_id end |
#kind ⇒ String
Corresponds to the JSON property kind
3434 3435 3436 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3434 def kind @kind end |
#web_property_id ⇒ String
Corresponds to the JSON property webPropertyId
3439 3440 3441 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3439 def web_property_id @web_property_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3446 3447 3448 3449 3450 3451 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 3446 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 |