# 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