Class: Google::Apis::DatamigrationV1::Position
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DatamigrationV1::Position
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datamigration_v1/classes.rb,
 lib/google/apis/datamigration_v1/representations.rb,
 lib/google/apis/datamigration_v1/representations.rb
Overview
Issue position.
Instance Attribute Summary collapse
- 
  
    
      #column  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Issue column number Corresponds to the JSON property column.
- 
  
    
      #length  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Issue length Corresponds to the JSON property length.
- 
  
    
      #line  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Issue line number Corresponds to the JSON property line.
- 
  
    
      #offset  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Issue offset Corresponds to the JSON property offset.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Position 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Position. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ Position
Returns a new instance of Position.
| 3463 3464 3465 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 3463 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#column ⇒ Fixnum
Issue column number
Corresponds to the JSON property column
| 3446 3447 3448 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 3446 def column @column end | 
#length ⇒ Fixnum
Issue length
Corresponds to the JSON property length
| 3451 3452 3453 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 3451 def length @length end | 
#line ⇒ Fixnum
Issue line number
Corresponds to the JSON property line
| 3456 3457 3458 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 3456 def line @line end | 
#offset ⇒ Fixnum
Issue offset
Corresponds to the JSON property offset
| 3461 3462 3463 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 3461 def offset @offset end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3468 3469 3470 3471 3472 3473 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 3468 def update!(**args) @column = args[:column] if args.key?(:column) @length = args[:length] if args.key?(:length) @line = args[:line] if args.key?(:line) @offset = args[:offset] if args.key?(:offset) end |