class Google::Apis::DfareportingV3_5::CreativeAssetId
Creative
Asset ID.
Attributes
name[RW]
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` @return [String]
type[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 3751 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 3756 def update!(**args) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end