# Code generated by Speakeasy (https://speakeasyapi.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module SpeakeasyClientSDK module Shared class SuggestOperationIDsOpts < ::SpeakeasyClientSDK::Utils::FieldAugmented extend T::Sig field :depth_style, T.nilable(::SpeakeasyClientSDK::Shared::DepthStyle), { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('depth_style'), 'decoder': Utils.enum_from_string(::SpeakeasyClientSDK::Shared::DepthStyle, true) } } field :style, T.nilable(::SpeakeasyClientSDK::Shared::Style), { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('style'), 'decoder': Utils.enum_from_string(::SpeakeasyClientSDK::Shared::Style, true) } } sig { params(depth_style: T.nilable(::SpeakeasyClientSDK::Shared::DepthStyle), style: T.nilable(::SpeakeasyClientSDK::Shared::Style)).void } def initialize(depth_style: nil, style: nil) @depth_style = depth_style @style = style end end end end