mirror of
https://github.com/LukeHagar/plexruby.git
synced 2025-12-07 20:57:44 +00:00
25 lines
597 B
Ruby
25 lines
597 B
Ruby
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
|
|
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
|
|
module OpenApiSDK
|
|
module Operations
|
|
|
|
# MyPlex Account
|
|
class GetMyPlexAccountResponseBody < ::OpenApiSDK::Utils::FieldAugmented
|
|
extend T::Sig
|
|
|
|
|
|
field :my_plex, T.nilable(::OpenApiSDK::Operations::MyPlex), { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('MyPlex') } }
|
|
|
|
|
|
sig { params(my_plex: T.nilable(::OpenApiSDK::Operations::MyPlex)).void }
|
|
def initialize(my_plex: nil)
|
|
@my_plex = my_plex
|
|
end
|
|
end
|
|
end
|
|
end
|