Class: Google::Apis::DatamanagerV1::PseudonymousIdInfo

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PseudonymousIdInfo

Returns a new instance of PseudonymousIdInfo.



1952
1953
1954
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1952

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#billable_record_countFixnum

Optional. Immutable. The number of billable records (e.g. uploaded or matched). Corresponds to the JSON property billableRecordCount

Returns:

  • (Fixnum)


1945
1946
1947
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1945

def billable_record_count
  @billable_record_count
end

#sync_statusString

Output only. Sync status of the user list. Corresponds to the JSON property syncStatus

Returns:

  • (String)


1950
1951
1952
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1950

def sync_status
  @sync_status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1957
1958
1959
1960
# File 'lib/google/apis/datamanager_v1/classes.rb', line 1957

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