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]
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]
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