Class: Google::Apis::DoubleclickbidmanagerV1_1::RowStatus

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/doubleclickbidmanager_v1_1/classes.rb,
generated/google/apis/doubleclickbidmanager_v1_1/representations.rb,
generated/google/apis/doubleclickbidmanager_v1_1/representations.rb

Overview

Represents the upload status of a row in the request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RowStatus

Returns a new instance of RowStatus.



887
888
889
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 887

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#changedBoolean Also known as: changed?

Whether the stored entity is changed as a result of upload. Corresponds to the JSON property changed

Returns:

  • (Boolean)


858
859
860
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 858

def changed
  @changed
end

#entity_idFixnum

Entity Id. Corresponds to the JSON property entityId

Returns:

  • (Fixnum)


864
865
866
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 864

def entity_id
  @entity_id
end

#entity_nameString

Entity name. Corresponds to the JSON property entityName

Returns:

  • (String)


869
870
871
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 869

def entity_name
  @entity_name
end

#errorsArray<String>

Reasons why the entity can't be uploaded. Corresponds to the JSON property errors

Returns:

  • (Array<String>)


874
875
876
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 874

def errors
  @errors
end

#persistedBoolean Also known as: persisted?

Whether the entity is persisted. Corresponds to the JSON property persisted

Returns:

  • (Boolean)


879
880
881
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 879

def persisted
  @persisted
end

#row_numberFixnum

Row number. Corresponds to the JSON property rowNumber

Returns:

  • (Fixnum)


885
886
887
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 885

def row_number
  @row_number
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



892
893
894
895
896
897
898
899
# File 'generated/google/apis/doubleclickbidmanager_v1_1/classes.rb', line 892

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