Class: Google::Apis::MigrationcenterV1alpha1::ImportRowErrorXlsxErrorDetails
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::ImportRowErrorXlsxErrorDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1alpha1/classes.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb
Overview
Error details for an XLSX file.
Instance Attribute Summary collapse
-
#row_number ⇒ Fixnum
The row number where the error was detected.
-
#sheet ⇒ String
The name of the sheet where the error was detected.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ImportRowErrorXlsxErrorDetails
constructor
A new instance of ImportRowErrorXlsxErrorDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ImportRowErrorXlsxErrorDetails
Returns a new instance of ImportRowErrorXlsxErrorDetails.
3447 3448 3449 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3447 def initialize(**args) update!(**args) end |
Instance Attribute Details
#row_number ⇒ Fixnum
The row number where the error was detected.
Corresponds to the JSON property rowNumber
3440 3441 3442 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3440 def row_number @row_number end |
#sheet ⇒ String
The name of the sheet where the error was detected.
Corresponds to the JSON property sheet
3445 3446 3447 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3445 def sheet @sheet end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3452 3453 3454 3455 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3452 def update!(**args) @row_number = args[:row_number] if args.key?(:row_number) @sheet = args[:sheet] if args.key?(:sheet) end |