Class: Google::Apis::DfareportingV3_4::EncryptionInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v3_4/classes.rb,
generated/google/apis/dfareporting_v3_4/representations.rb,
generated/google/apis/dfareporting_v3_4/representations.rb

Overview

A description of how user IDs are encrypted.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ EncryptionInfo

Returns a new instance of EncryptionInfo.



5809
5810
5811
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5809

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

Instance Attribute Details

#encryption_entity_idFixnum

The encryption entity ID. This should match the encryption configuration for ad serving or Data Transfer. Corresponds to the JSON property encryptionEntityId

Returns:

  • (Fixnum)


5789
5790
5791
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5789

def encryption_entity_id
  @encryption_entity_id
end

#encryption_entity_typeString

The encryption entity type. This should match the encryption configuration for ad serving or Data Transfer. Corresponds to the JSON property encryptionEntityType

Returns:

  • (String)


5795
5796
5797
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5795

def encryption_entity_type
  @encryption_entity_type
end

#encryption_sourceString

Describes whether the encrypted cookie was received from ad serving (the %m macro) or from Data Transfer. Corresponds to the JSON property encryptionSource

Returns:

  • (String)


5801
5802
5803
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5801

def encryption_source
  @encryption_source
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#encryptionInfo". Corresponds to the JSON property kind

Returns:

  • (String)


5807
5808
5809
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5807

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5814
5815
5816
5817
5818
5819
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 5814

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