Class: Google::Apis::AiplatformV1::CloudAiNlLlmProtoServicePartVideoMetadata
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::CloudAiNlLlmProtoServicePartVideoMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
Metadata describes the input video content.
Instance Attribute Summary collapse
-
#end_offset ⇒ String
The end offset of the video.
-
#model_level_meta_data ⇒ Google::Apis::AiplatformV1::CloudAiNlLlmProtoServicePartVideoMetadataModelLevelMetadata
Internal only fields Corresponds to the JSON property
modelLevelMetaData. -
#start_offset ⇒ String
The start offset of the video.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloudAiNlLlmProtoServicePartVideoMetadata
constructor
A new instance of CloudAiNlLlmProtoServicePartVideoMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CloudAiNlLlmProtoServicePartVideoMetadata
Returns a new instance of CloudAiNlLlmProtoServicePartVideoMetadata.
895 896 897 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 895 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_offset ⇒ String
The end offset of the video.
Corresponds to the JSON property endOffset
883 884 885 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 883 def end_offset @end_offset end |
#model_level_meta_data ⇒ Google::Apis::AiplatformV1::CloudAiNlLlmProtoServicePartVideoMetadataModelLevelMetadata
Internal only fields
Corresponds to the JSON property modelLevelMetaData
888 889 890 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 888 def @model_level_meta_data end |
#start_offset ⇒ String
The start offset of the video.
Corresponds to the JSON property startOffset
893 894 895 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 893 def start_offset @start_offset end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
900 901 902 903 904 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 900 def update!(**args) @end_offset = args[:end_offset] if args.key?(:end_offset) @model_level_meta_data = args[:model_level_meta_data] if args.key?(:model_level_meta_data) @start_offset = args[:start_offset] if args.key?(:start_offset) end |