class Google::Apis::DfareportingV3_5::EncryptionInfo

A description of how user IDs are encrypted.

Attributes

encryption_entity_id[RW]

The encryption entity ID. This should match the encryption configuration for ad serving or Data Transfer. Corresponds to the JSON property `encryptionEntityId` @return [Fixnum]

encryption_entity_type[RW]

The encryption entity type. This should match the encryption configuration for ad serving or Data Transfer. Corresponds to the JSON property `encryptionEntityType` @return [String]

encryption_source[RW]

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]

kind[RW]

Identifies what kind of resource this is. Value: the fixed string “ dfareporting#encryptionInfo”. Corresponds to the JSON property `kind` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 5413
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dfareporting_v3_5/classes.rb, line 5418
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