Class: Google::Apis::DisplayvideoV1::Asset

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

Overview

A single asset.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Asset

Returns a new instance of Asset.



556
557
558
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 556

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

Instance Attribute Details

#contentString

The asset content. For uploaded assets, the content is the serving path. Corresponds to the JSON property content

Returns:

  • (String)


547
548
549
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 547

def content
  @content
end

#media_idFixnum

Media ID of the uploaded asset. This is a unique identifier for the asset. This ID can be passed to other API calls, e.g. CreateCreative to associate the asset with a creative. Corresponds to the JSON property mediaId

Returns:

  • (Fixnum)


554
555
556
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 554

def media_id
  @media_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



561
562
563
564
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 561

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