class Google::Apis::AnalyticsV3::HashClientIdResponse
JSON template for a hash Client Id response resource.
Attributes
client_id[RW]
Corresponds to the JSON property `clientId` @return [String]
hashed_client_id[RW]
Corresponds to the JSON property `hashedClientId` @return [String]
kind[RW]
Corresponds to the JSON property `kind` @return [String]
web_property_id[RW]
Corresponds to the JSON property `webPropertyId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analytics_v3/classes.rb, line 3347 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/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