@@ -145,12 +145,14 @@ def search(self) -> SearchResource:
145145
146146 @cached_property
147147 def settings (self ) -> SettingsResource :
148+ """Organization settings"""
148149 from .resources .settings import SettingsResource
149150
150151 return SettingsResource (self )
151152
152153 @cached_property
153154 def connections (self ) -> ConnectionsResource :
155+ """External service integrations"""
154156 from .resources .connections import ConnectionsResource
155157
156158 return ConnectionsResource (self )
@@ -458,12 +460,14 @@ def search(self) -> AsyncSearchResource:
458460
459461 @cached_property
460462 def settings (self ) -> AsyncSettingsResource :
463+ """Organization settings"""
461464 from .resources .settings import AsyncSettingsResource
462465
463466 return AsyncSettingsResource (self )
464467
465468 @cached_property
466469 def connections (self ) -> AsyncConnectionsResource :
470+ """External service integrations"""
467471 from .resources .connections import AsyncConnectionsResource
468472
469473 return AsyncConnectionsResource (self )
@@ -729,12 +733,14 @@ def search(self) -> search.SearchResourceWithRawResponse:
729733
730734 @cached_property
731735 def settings (self ) -> settings .SettingsResourceWithRawResponse :
736+ """Organization settings"""
732737 from .resources .settings import SettingsResourceWithRawResponse
733738
734739 return SettingsResourceWithRawResponse (self ._client .settings )
735740
736741 @cached_property
737742 def connections (self ) -> connections .ConnectionsResourceWithRawResponse :
743+ """External service integrations"""
738744 from .resources .connections import ConnectionsResourceWithRawResponse
739745
740746 return ConnectionsResourceWithRawResponse (self ._client .connections )
@@ -773,12 +779,14 @@ def search(self) -> search.AsyncSearchResourceWithRawResponse:
773779
774780 @cached_property
775781 def settings (self ) -> settings .AsyncSettingsResourceWithRawResponse :
782+ """Organization settings"""
776783 from .resources .settings import AsyncSettingsResourceWithRawResponse
777784
778785 return AsyncSettingsResourceWithRawResponse (self ._client .settings )
779786
780787 @cached_property
781788 def connections (self ) -> connections .AsyncConnectionsResourceWithRawResponse :
789+ """External service integrations"""
782790 from .resources .connections import AsyncConnectionsResourceWithRawResponse
783791
784792 return AsyncConnectionsResourceWithRawResponse (self ._client .connections )
@@ -817,12 +825,14 @@ def search(self) -> search.SearchResourceWithStreamingResponse:
817825
818826 @cached_property
819827 def settings (self ) -> settings .SettingsResourceWithStreamingResponse :
828+ """Organization settings"""
820829 from .resources .settings import SettingsResourceWithStreamingResponse
821830
822831 return SettingsResourceWithStreamingResponse (self ._client .settings )
823832
824833 @cached_property
825834 def connections (self ) -> connections .ConnectionsResourceWithStreamingResponse :
835+ """External service integrations"""
826836 from .resources .connections import ConnectionsResourceWithStreamingResponse
827837
828838 return ConnectionsResourceWithStreamingResponse (self ._client .connections )
@@ -861,12 +871,14 @@ def search(self) -> search.AsyncSearchResourceWithStreamingResponse:
861871
862872 @cached_property
863873 def settings (self ) -> settings .AsyncSettingsResourceWithStreamingResponse :
874+ """Organization settings"""
864875 from .resources .settings import AsyncSettingsResourceWithStreamingResponse
865876
866877 return AsyncSettingsResourceWithStreamingResponse (self ._client .settings )
867878
868879 @cached_property
869880 def connections (self ) -> connections .AsyncConnectionsResourceWithStreamingResponse :
881+ """External service integrations"""
870882 from .resources .connections import AsyncConnectionsResourceWithStreamingResponse
871883
872884 return AsyncConnectionsResourceWithStreamingResponse (self ._client .connections )
0 commit comments