Class: AssemblyAI::Files::UploadedFile
- Inherits:
-
Object
- Object
- AssemblyAI::Files::UploadedFile
- Defined in:
- lib/assemblyai/files/types/uploaded_file.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
-
#upload_url ⇒ String
readonly
A URL that points to your audio file, accessible only by AssemblyAI’s servers.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ AssemblyAI::Files::UploadedFile
Deserialize a JSON object to an instance of UploadedFile.
-
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given hash and check each fields type against the current object’s property definitions.
Instance Method Summary collapse
- #initialize(upload_url:, additional_properties: nil) ⇒ AssemblyAI::Files::UploadedFile constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of UploadedFile to a JSON object.
Constructor Details
#initialize(upload_url:, additional_properties: nil) ⇒ AssemblyAI::Files::UploadedFile
22 23 24 25 26 |
# File 'lib/assemblyai/files/types/uploaded_file.rb', line 22 def initialize(upload_url:, additional_properties: nil) @upload_url = upload_url @additional_properties = additional_properties @_field_set = { "upload_url": upload_url } end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
12 13 14 |
# File 'lib/assemblyai/files/types/uploaded_file.rb', line 12 def additional_properties @additional_properties end |
#upload_url ⇒ String (readonly)
Returns A URL that points to your audio file, accessible only by AssemblyAI’s servers.
10 11 12 |
# File 'lib/assemblyai/files/types/uploaded_file.rb', line 10 def upload_url @upload_url end |
Class Method Details
.from_json(json_object:) ⇒ AssemblyAI::Files::UploadedFile
Deserialize a JSON object to an instance of UploadedFile
32 33 34 35 36 |
# File 'lib/assemblyai/files/types/uploaded_file.rb', line 32 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) upload_url = struct["upload_url"] new(upload_url: upload_url, additional_properties: struct) end |
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given
hash and check each fields type against the current object's property
definitions.
51 52 53 |
# File 'lib/assemblyai/files/types/uploaded_file.rb', line 51 def self.validate_raw(obj:) obj.upload_url.is_a?(String) != false || raise("Passed value for field obj.upload_url is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of UploadedFile to a JSON object
41 42 43 |
# File 'lib/assemblyai/files/types/uploaded_file.rb', line 41 def to_json(*_args) @_field_set&.to_json end |