Class: Google::Apis::StreetviewpublishV1::NoOverlapGpsFailureDetails
- Inherits:
-
Object
- Object
- Google::Apis::StreetviewpublishV1::NoOverlapGpsFailureDetails
- 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
-
#gps_end_time ⇒ String
Time of last recorded GPS point.
-
#gps_start_time ⇒ String
Time of first recorded GPS point.
-
#video_end_time ⇒ String
End time of video.
-
#video_start_time ⇒ String
Start time of video.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NoOverlapGpsFailureDetails
constructor
A new instance of NoOverlapGpsFailureDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_time ⇒ String
Time of last recorded GPS point.
Corresponds to the JSON property gpsEndTime
455 456 457 |
# File 'lib/google/apis/streetviewpublish_v1/classes.rb', line 455 def gps_end_time @gps_end_time end |
#gps_start_time ⇒ String
Time of first recorded GPS point.
Corresponds to the JSON property gpsStartTime
460 461 462 |
# File 'lib/google/apis/streetviewpublish_v1/classes.rb', line 460 def gps_start_time @gps_start_time end |
#video_end_time ⇒ String
End time of video.
Corresponds to the JSON property videoEndTime
465 466 467 |
# File 'lib/google/apis/streetviewpublish_v1/classes.rb', line 465 def video_end_time @video_end_time end |
#video_start_time ⇒ String
Start time of video.
Corresponds to the JSON property videoStartTime
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 |