mirror of
https://github.com/LukeHagar/plexruby.git
synced 2025-12-06 20:57:45 +00:00
34 lines
798 B
Ruby
34 lines
798 B
Ruby
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
|
|
module PlexRubySDK
|
|
module Models
|
|
module Operations
|
|
|
|
|
|
class StopTranscodeSessionRequest
|
|
extend T::Sig
|
|
include Crystalline::MetadataFields
|
|
|
|
# the Key of the transcode session to stop
|
|
field :session_key, ::String, { 'path_param': { 'field_name': 'sessionKey', 'style': 'simple', 'explode': false } }
|
|
|
|
|
|
sig { params(session_key: ::String).void }
|
|
def initialize(session_key: nil)
|
|
@session_key = session_key
|
|
end
|
|
|
|
def ==(other)
|
|
return false unless other.is_a? self.class
|
|
return false unless @session_key == other.session_key
|
|
true
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|