rbi/lib/anthropic/internal/page.rbi (18 lines of code) (raw):

# typed: strong module Anthropic module Internal class Page include Anthropic::Internal::Type::BasePage Elem = type_member sig { returns(T.nilable(T::Array[Elem])) } attr_accessor :data sig { returns(T::Boolean) } attr_accessor :has_more sig { returns(T.nilable(String)) } attr_accessor :first_id sig { returns(T.nilable(String)) } attr_accessor :last_id sig { returns(String) } def inspect; end end end end