class Google::Apis::DfareportingV3_4::EncryptionInfo
A description of how user IDs are encrypted.
Attributes
The encryption entity ID. This should match the encryption configuration for ad serving or Data Transfer. Corresponds to the JSON property `encryptionEntityId` @return [Fixnum]
The encryption entity type. This should match the encryption configuration for ad serving or Data Transfer. Corresponds to the JSON property `encryptionEntityType` @return [String]
Describes whether the encrypted cookie was received from ad serving (the %m macro) or from Data Transfer. Corresponds to the JSON property `encryptionSource` @return [String]
Identifies what kind of resource this is. Value: the fixed string “ dfareporting#encryptionInfo”. Corresponds to the JSON property `kind` @return [String]
Public Class Methods
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 5866 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 5871 def update!(**args) @encryption_entity_id = args[:encryption_entity_id] if args.key?(:encryption_entity_id) @encryption_entity_type = args[:encryption_entity_type] if args.key?(:encryption_entity_type) @encryption_source = args[:encryption_source] if args.key?(:encryption_source) @kind = args[:kind] if args.key?(:kind) end