Class: Google::Apis::StreetviewpublishV1::NoOverlapGpsFailureDetails

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

Overview

Details related to PhotoSequenceProcessingFailureReason#NO_OVERLAP_GPS.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NoOverlapGpsFailureDetails

Returns a new instance of NoOverlapGpsFailureDetails.



472
473
474
# File 'lib/google/apis/streetviewpublish_v1/classes.rb', line 472

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

Instance Attribute Details

#gps_end_timeString

Time of last recorded GPS point. Corresponds to the JSON property gpsEndTime

Returns:

  • (String)


455
456
457
# File 'lib/google/apis/streetviewpublish_v1/classes.rb', line 455

def gps_end_time
  @gps_end_time
end

#gps_start_timeString

Time of first recorded GPS point. Corresponds to the JSON property gpsStartTime

Returns:

  • (String)


460
461
462
# File 'lib/google/apis/streetviewpublish_v1/classes.rb', line 460

def gps_start_time
  @gps_start_time
end

#video_end_timeString

End time of video. Corresponds to the JSON property videoEndTime

Returns:

  • (String)


465
466
467
# File 'lib/google/apis/streetviewpublish_v1/classes.rb', line 465

def video_end_time
  @video_end_time
end

#video_start_timeString

Start time of video. Corresponds to the JSON property videoStartTime

Returns:

  • (String)


470
471
472
# File 'lib/google/apis/streetviewpublish_v1/classes.rb', line 470

def video_start_time
  @video_start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



477
478
479
480
481
482
# File 'lib/google/apis/streetviewpublish_v1/classes.rb', line 477

def update!(**args)
  @gps_end_time = args[:gps_end_time] if args.key?(:gps_end_time)
  @gps_start_time = args[:gps_start_time] if args.key?(:gps_start_time)
  @video_end_time = args[:video_end_time] if args.key?(:video_end_time)
  @video_start_time = args[:video_start_time] if args.key?(:video_start_time)
end