Class: Google::Apis::DatamanagerV1::PseudonymousIdInfo
- Inherits:
-
Object
- Object
- Google::Apis::DatamanagerV1::PseudonymousIdInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datamanager_v1/classes.rb,
lib/google/apis/datamanager_v1/representations.rb,
lib/google/apis/datamanager_v1/representations.rb
Overview
Additional information when PSEUDONYMOUS_ID is one of the upload_key_types.
Instance Attribute Summary collapse
-
#billable_record_count ⇒ Fixnum
Optional.
-
#sync_status ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PseudonymousIdInfo
constructor
A new instance of PseudonymousIdInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PseudonymousIdInfo
Returns a new instance of PseudonymousIdInfo.
1733 1734 1735 |
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1733 def initialize(**args) update!(**args) end |
Instance Attribute Details
#billable_record_count ⇒ Fixnum
Optional. Immutable. The number of billable records (e.g. uploaded or matched).
Corresponds to the JSON property billableRecordCount
1726 1727 1728 |
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1726 def billable_record_count @billable_record_count end |
#sync_status ⇒ String
Output only. Sync status of the user list.
Corresponds to the JSON property syncStatus
1731 1732 1733 |
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1731 def sync_status @sync_status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1738 1739 1740 1741 |
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1738 def update!(**args) @billable_record_count = args[:billable_record_count] if args.key?(:billable_record_count) @sync_status = args[:sync_status] if args.key?(:sync_status) end |