Class: Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1BrowserAttributes
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1BrowserAttributes
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1/classes.rb,
lib/google/apis/cloudidentity_v1/representations.rb,
lib/google/apis/cloudidentity_v1/representations.rb
Overview
Contains information about browser profiles reported by the Endpoint Verification extension.
Instance Attribute Summary collapse
-
#chrome_browser_info ⇒ Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1BrowserInfo
Browser-specific fields reported by the Endpoint Verification extension.
-
#chrome_profile_id ⇒ String
Chrome profile ID that is exposed by the Chrome API.
-
#last_profile_sync_time ⇒ String
Timestamp in milliseconds since the Unix epoch when the profile/gcm id was last synced.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAppsCloudidentityDevicesV1BrowserAttributes
constructor
A new instance of GoogleAppsCloudidentityDevicesV1BrowserAttributes.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAppsCloudidentityDevicesV1BrowserAttributes
Returns a new instance of GoogleAppsCloudidentityDevicesV1BrowserAttributes.
643 644 645 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 643 def initialize(**args) update!(**args) end |
Instance Attribute Details
#chrome_browser_info ⇒ Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1BrowserInfo
Browser-specific fields reported by the Endpoint Verification extension.
Corresponds to the JSON property chromeBrowserInfo
629 630 631 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 629 def chrome_browser_info @chrome_browser_info end |
#chrome_profile_id ⇒ String
Chrome profile ID that is exposed by the Chrome API. It is unique for each
device.
Corresponds to the JSON property chromeProfileId
635 636 637 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 635 def chrome_profile_id @chrome_profile_id end |
#last_profile_sync_time ⇒ String
Timestamp in milliseconds since the Unix epoch when the profile/gcm id was
last synced.
Corresponds to the JSON property lastProfileSyncTime
641 642 643 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 641 def last_profile_sync_time @last_profile_sync_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
648 649 650 651 652 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 648 def update!(**args) @chrome_browser_info = args[:chrome_browser_info] if args.key?(:chrome_browser_info) @chrome_profile_id = args[:chrome_profile_id] if args.key?(:chrome_profile_id) @last_profile_sync_time = args[:last_profile_sync_time] if args.key?(:last_profile_sync_time) end |