Class: Google::Apis::DfareportingV2_7::CreativeAssetId

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

Overview

Creative Asset ID.

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) ⇒ CreativeAssetId

Returns a new instance of CreativeAssetId



3493
3494
3495
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 3493

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

Instance Attribute Details

#nameString

Name of the creative asset. This is a required field while inserting an asset. After insertion, this assetIdentifier is used to identify the uploaded asset. Characters in the name must be alphanumeric or one of the following: ".-_ ". Spaces are allowed. Corresponds to the JSON property name

Returns:

  • (String)


3485
3486
3487
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 3485

def name
  @name
end

#typeString

Type of asset to upload. This is a required field. FLASH and IMAGE are no longer supported for new uploads. All image assets should use HTML_IMAGE. Corresponds to the JSON property type

Returns:

  • (String)


3491
3492
3493
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 3491

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3498
3499
3500
3501
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 3498

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @type = args[:type] if args.key?(:type)
end