class Google::Apis::DoubleclickbidmanagerV1::RowStatus

Represents the upload status of a row in the request.

Attributes

changed[RW]

Whether the stored entity is changed as a result of upload. Corresponds to the JSON property `changed` @return [Boolean]

changed?[RW]

Whether the stored entity is changed as a result of upload. Corresponds to the JSON property `changed` @return [Boolean]

entity_id[RW]

Entity Id. Corresponds to the JSON property `entityId` @return [String]

entity_name[RW]

Entity name. Corresponds to the JSON property `entityName` @return [String]

errors[RW]

Reasons why the entity can't be uploaded. Corresponds to the JSON property `errors` @return [Array<String>]

persisted[RW]

Whether the entity is persisted. Corresponds to the JSON property `persisted` @return [Boolean]

persisted?[RW]

Whether the entity is persisted. Corresponds to the JSON property `persisted` @return [Boolean]

row_number[RW]

Row number. Corresponds to the JSON property `rowNumber` @return [Fixnum]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

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