class Google::Apis::ContentV2_1::CollectionStatus

The collectionstatus message.

Attributes

collection_level_issuses[RW]

A list of all issues associated with the collection. Corresponds to the JSON property `collectionLevelIssuses` @return [Array<Google::Apis::ContentV2_1::CollectionStatusItemLevelIssue>]

creation_date[RW]

Date on which the collection has been created in [ISO 8601](en. wikipedia.org/wiki/ISO_8601) format: Date, time, and offset, e.g. “2020-01- 02T09:00:00+01:00” or “2020-01-02T09:00:00Z” Corresponds to the JSON property `creationDate` @return [String]

destination_statuses[RW]

The intended destinations for the collection. Corresponds to the JSON property `destinationStatuses` @return [Array<Google::Apis::ContentV2_1::CollectionStatusDestinationStatus>]

id[RW]

Required. The ID of the collection for which status is reported. Corresponds to the JSON property `id` @return [String]

last_update_date[RW]

Date on which the collection has been last updated in [ISO 8601](en. wikipedia.org/wiki/ISO_8601) format: Date, time, and offset, e.g. “2020-01- 02T09:00:00+01:00” or “2020-01-02T09:00:00Z” Corresponds to the JSON property `lastUpdateDate` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 2010
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/content_v2_1/classes.rb, line 2015
def update!(**args)
  @collection_level_issuses = args[:collection_level_issuses] if args.key?(:collection_level_issuses)
  @creation_date = args[:creation_date] if args.key?(:creation_date)
  @destination_statuses = args[:destination_statuses] if args.key?(:destination_statuses)
  @id = args[:id] if args.key?(:id)
  @last_update_date = args[:last_update_date] if args.key?(:last_update_date)
end