class

EasySubtitle::SubtitleCandidate

Inherits Reference / Object

Constructors

new(file_id : Int64, file_name : String = "", language : String = "en", download_count : Int64 = 0_i64, hearing_impaired : Bool = false, movie_hash_match : Bool = false, release : String = "", fps : Float64 = 0.0, from_trusted : Bool = false, parent_title : String = "")
Source

Instance methods

download_count
Source
download_count=(download_count : Int64)
Source
file_id
Source
file_id=(file_id : Int64)
Source
file_name
Source
file_name=(file_name : String)
Source
fps=(fps : Float64)
Source
from_trusted
Source
from_trusted=(from_trusted : Bool)
Source
hearing_impaired
Source
hearing_impaired=(hearing_impaired : Bool)
Source
language
Source
language=(language : String)
Source
movie_hash_match
Source
movie_hash_match=(movie_hash_match : Bool)
Source
parent_title
Source
parent_title=(parent_title : String)
Source
release
Source
release=(release : String)
Source
to_s(io : IO) : Nil

Appends a short String representation of this object which includes its class name and its object address.

class Person
  def initialize(@name : String, @age : Int32)
  end
end

Person.new("John", 32).to_s # => #<Person:0x10a199f20>
Source