Class: Google::Apis::DoubleclickbidmanagerV2::ReportMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DoubleclickbidmanagerV2::ReportMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/doubleclickbidmanager_v2/classes.rb,
lib/google/apis/doubleclickbidmanager_v2/representations.rb,
lib/google/apis/doubleclickbidmanager_v2/representations.rb
Overview
Report metadata.
Instance Attribute Summary collapse
-
#google_cloud_storage_path ⇒ String
Output only.
-
#report_data_end_date ⇒ Google::Apis::DoubleclickbidmanagerV2::Date
Represents a whole or partial calendar date, such as a birthday.
-
#report_data_start_date ⇒ Google::Apis::DoubleclickbidmanagerV2::Date
Represents a whole or partial calendar date, such as a birthday.
-
#status ⇒ Google::Apis::DoubleclickbidmanagerV2::ReportStatus
Report status.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReportMetadata
constructor
A new instance of ReportMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReportMetadata
Returns a new instance of ReportMetadata.
484 485 486 |
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 484 def initialize(**args) update!(**args) end |
Instance Attribute Details
#google_cloud_storage_path ⇒ String
Output only. The path to the location in Google Cloud Storage where the report
is stored.
Corresponds to the JSON property googleCloudStoragePath
453 454 455 |
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 453 def google_cloud_storage_path @google_cloud_storage_path end |
#report_data_end_date ⇒ Google::Apis::DoubleclickbidmanagerV2::Date
Represents a whole or partial calendar date, such as a birthday. The time of
day and time zone are either specified elsewhere or are insignificant. The
date is relative to the Gregorian Calendar. This can represent one of the
following: * A full date, with non-zero year, month, and day values. * A month
and day, with a zero year (for example, an anniversary). * A year on its own,
with a zero month and a zero day. * A year and month, with a zero day (for
example, a credit card expiration date). Related types: * google.type.
TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
Corresponds to the JSON property reportDataEndDate
465 466 467 |
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 465 def report_data_end_date @report_data_end_date end |
#report_data_start_date ⇒ Google::Apis::DoubleclickbidmanagerV2::Date
Represents a whole or partial calendar date, such as a birthday. The time of
day and time zone are either specified elsewhere or are insignificant. The
date is relative to the Gregorian Calendar. This can represent one of the
following: * A full date, with non-zero year, month, and day values. * A month
and day, with a zero year (for example, an anniversary). * A year on its own,
with a zero month and a zero day. * A year and month, with a zero day (for
example, a credit card expiration date). Related types: * google.type.
TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
Corresponds to the JSON property reportDataStartDate
477 478 479 |
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 477 def report_data_start_date @report_data_start_date end |
#status ⇒ Google::Apis::DoubleclickbidmanagerV2::ReportStatus
Report status.
Corresponds to the JSON property status
482 483 484 |
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 482 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
489 490 491 492 493 494 |
# File 'lib/google/apis/doubleclickbidmanager_v2/classes.rb', line 489 def update!(**args) @google_cloud_storage_path = args[:google_cloud_storage_path] if args.key?(:google_cloud_storage_path) @report_data_end_date = args[:report_data_end_date] if args.key?(:report_data_end_date) @report_data_start_date = args[:report_data_start_date] if args.key?(:report_data_start_date) @status = args[:status] if args.key?(:status) end |