Class: Spotted::Models::AudioAnalysisRetrieveResponse::Meta
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Spotted::Models::AudioAnalysisRetrieveResponse::Meta
- Defined in:
- lib/spotted/models/audio_analysis_retrieve_response.rb
Overview
Instance Attribute Summary collapse
-
#analysis_time ⇒ Float?
The amount of time taken to analyze this track.
-
#analyzer_version ⇒ String?
The version of the Analyzer used to analyze this track.
-
#detailed_status ⇒ String?
A detailed status code for this track.
-
#input_process ⇒ String?
The method used to read the track’s audio data.
-
#platform ⇒ String?
The platform used to read the track’s audio data.
-
#status_code ⇒ Integer?
The return code of the analyzer process.
-
#timestamp ⇒ Integer?
The Unix timestamp (in seconds) at which this track was analyzed.
Method Summary
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, #initialize, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
This class inherits a constructor from Spotted::Internal::Type::BaseModel
Instance Attribute Details
#analysis_time ⇒ Float?
The amount of time taken to analyze this track.
79 |
# File 'lib/spotted/models/audio_analysis_retrieve_response.rb', line 79 optional :analysis_time, Float |
#analyzer_version ⇒ String?
The version of the Analyzer used to analyze this track.
85 |
# File 'lib/spotted/models/audio_analysis_retrieve_response.rb', line 85 optional :analyzer_version, String |
#detailed_status ⇒ String?
A detailed status code for this track. If analysis data is missing, this code may explain why.
92 |
# File 'lib/spotted/models/audio_analysis_retrieve_response.rb', line 92 optional :detailed_status, String |
#input_process ⇒ String?
The method used to read the track’s audio data.
98 |
# File 'lib/spotted/models/audio_analysis_retrieve_response.rb', line 98 optional :input_process, String |
#platform ⇒ String?
The platform used to read the track’s audio data.
104 |
# File 'lib/spotted/models/audio_analysis_retrieve_response.rb', line 104 optional :platform, String |
#status_code ⇒ Integer?
The return code of the analyzer process. 0 if successful, 1 if any errors occurred.
111 |
# File 'lib/spotted/models/audio_analysis_retrieve_response.rb', line 111 optional :status_code, Integer |
#timestamp ⇒ Integer?
The Unix timestamp (in seconds) at which this track was analyzed.
117 |
# File 'lib/spotted/models/audio_analysis_retrieve_response.rb', line 117 optional :timestamp, Integer |