Class: Google::Apis::DisplayvideoV1::SdfConfig
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV1::SdfConfig
- 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
Structured Data File (SDF) related settings.
Instance Attribute Summary collapse
-
#admin_email ⇒ String
An administrator email address to which the SDF processing status reports will be sent.
-
#version ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SdfConfig
constructor
A new instance of SdfConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SdfConfig
Returns a new instance of SdfConfig.
7426 7427 7428 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 7426 def initialize(**args) update!(**args) end |
Instance Attribute Details
#admin_email ⇒ String
An administrator email address to which the SDF processing status reports will
be sent.
Corresponds to the JSON property adminEmail
7419 7420 7421 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 7419 def admin_email @admin_email end |
#version ⇒ String
Required. The version of SDF being used.
Corresponds to the JSON property version
7424 7425 7426 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 7424 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7431 7432 7433 7434 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 7431 def update!(**args) @admin_email = args[:admin_email] if args.key?(:admin_email) @version = args[:version] if args.key?(:version) end |