class Google::Apis::DoubleclickbidmanagerV1::RowStatus
Represents the upload status of a row in the request.
Attributes
Whether the stored entity is changed as a result of upload. Corresponds to the JSON property `changed` @return [Boolean]
Whether the stored entity is changed as a result of upload. Corresponds to the JSON property `changed` @return [Boolean]
Entity Id. Corresponds to the JSON property `entityId` @return [String]
Entity name. Corresponds to the JSON property `entityName` @return [String]
Reasons why the entity can't be uploaded. Corresponds to the JSON property `errors` @return [Array<String>]
Whether the entity is persisted. Corresponds to the JSON property `persisted` @return [Boolean]
Whether the entity is persisted. Corresponds to the JSON property `persisted` @return [Boolean]
Row number. Corresponds to the JSON property `rowNumber` @return [Fixnum]
Public Class Methods
# File generated/google/apis/doubleclickbidmanager_v1/classes.rb, line 668 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/doubleclickbidmanager_v1/classes.rb, line 673 def update!(**args) @changed = args[:changed] if args.key?(:changed) @entity_id = args[:entity_id] if args.key?(:entity_id) @entity_name = args[:entity_name] if args.key?(:entity_name) @errors = args[:errors] if args.key?(:errors) @persisted = args[:persisted] if args.key?(:persisted) @row_number = args[:row_number] if args.key?(:row_number) end