Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1Media
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1Media
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudchannel_v1/classes.rb,
lib/google/apis/cloudchannel_v1/representations.rb,
lib/google/apis/cloudchannel_v1/representations.rb
Overview
Represents media information.
Instance Attribute Summary collapse
-
#content ⇒ String
URL of the media.
-
#title ⇒ String
Title of the media.
-
#type ⇒ String
Type of the media.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1Media
constructor
A new instance of GoogleCloudChannelV1Media.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1Media
Returns a new instance of GoogleCloudChannelV1Media.
1533 1534 1535 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1533 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content ⇒ String
URL of the media.
Corresponds to the JSON property content
1521 1522 1523 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1521 def content @content end |
#title ⇒ String
Title of the media.
Corresponds to the JSON property title
1526 1527 1528 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1526 def title @title end |
#type ⇒ String
Type of the media.
Corresponds to the JSON property type
1531 1532 1533 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1531 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1538 1539 1540 1541 1542 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1538 def update!(**args) @content = args[:content] if args.key?(:content) @title = args[:title] if args.key?(:title) @type = args[:type] if args.key?(:type) end |