mirror of
https://github.com/LukeHagar/plexruby.git
synced 2025-12-06 20:57:45 +00:00
28 lines
726 B
Ruby
28 lines
726 B
Ruby
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
|
|
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
|
|
module OpenApiSDK
|
|
module Operations
|
|
GET_PIN_PLEX_RESPONSE_BODY_SERVERS = [
|
|
'https://plex.tv/api/v2'
|
|
].freeze
|
|
|
|
# X-Plex-Client-Identifier is missing
|
|
class GetPinPlexResponseBody < ::OpenApiSDK::Utils::FieldAugmented
|
|
extend T::Sig
|
|
|
|
|
|
field :errors, T.nilable(T::Array[::OpenApiSDK::Operations::GetPinErrors]), { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('errors') } }
|
|
|
|
|
|
sig { params(errors: T.nilable(T::Array[::OpenApiSDK::Operations::GetPinErrors])).void }
|
|
def initialize(errors: nil)
|
|
@errors = errors
|
|
end
|
|
end
|
|
end
|
|
end
|