Class: Google::Apis::LanguageV1::XpsRow

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsRow

Returns a new instance of XpsRow.



3408
3409
3410
# File 'lib/google/apis/language_v1/classes.rb', line 3408

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

Instance Attribute Details

#column_idsArray<Fixnum>

The ids of the columns. Note: The below values field must match order of this field, if this field is set. Corresponds to the JSON property columnIds

Returns:

  • (Array<Fixnum>)


3399
3400
3401
# File 'lib/google/apis/language_v1/classes.rb', line 3399

def column_ids
  @column_ids
end

#valuesArray<Object>

The values of the row cells, given in the same order as the column_ids. If column_ids is not set, then in the same order as the input_feature_column_ids in TablesModelMetadata. Corresponds to the JSON property values

Returns:

  • (Array<Object>)


3406
3407
3408
# File 'lib/google/apis/language_v1/classes.rb', line 3406

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3413
3414
3415
3416
# File 'lib/google/apis/language_v1/classes.rb', line 3413

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