Class: Google::Apis::AlertcenterV1beta1::CsvRow

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

Overview

A representation of a single data row in a CSV file.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CsvRow

Returns a new instance of CsvRow.



903
904
905
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 903

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

Instance Attribute Details

#entriesArray<String>

The data entries in a CSV file row, as a string array rather than a single comma-separated string. Corresponds to the JSON property entries

Returns:

  • (Array<String>)


901
902
903
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 901

def entries
  @entries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



908
909
910
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 908

def update!(**args)
  @entries = args[:entries] if args.key?(:entries)
end