Class: Google::Cloud::VisionAI::V1::ClipAssetResponse
- Inherits:
-
Object
- Object
- Google::Cloud::VisionAI::V1::ClipAssetResponse
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/visionai/v1/warehouse.rb
Overview
Response message for ClipAsset API.
Defined Under Namespace
Classes: TimeIndexedUri
Instance Attribute Summary collapse
-
#time_indexed_uris ⇒ ::Array<::Google::Cloud::VisionAI::V1::ClipAssetResponse::TimeIndexedUri>
A list of signed uris to download the video clips that cover the requested time range ordered by time.
Instance Attribute Details
#time_indexed_uris ⇒ ::Array<::Google::Cloud::VisionAI::V1::ClipAssetResponse::TimeIndexedUri>
Returns A list of signed uris to download the video clips that cover the requested time range ordered by time.
2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 |
# File 'proto_docs/google/cloud/visionai/v1/warehouse.rb', line 2601 class ClipAssetResponse include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Signed uri with corresponding time range. # @!attribute [rw] temporal_partition # @return [::Google::Cloud::VisionAI::V1::Partition::TemporalPartition] # Time range of the video that the uri is for. # @!attribute [rw] uri # @return [::String] # Signed uri to download the video clip. class TimeIndexedUri include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |