@@ -154,6 +154,7 @@ def assets(self) -> AssetsResource:
154154
155155 @cached_property
156156 def info (self ) -> InfoResource :
157+ """Control the Beeper Desktop application"""
157158 from .resources .info import InfoResource
158159
159160 return InfoResource (self )
@@ -448,6 +449,7 @@ def assets(self) -> AsyncAssetsResource:
448449
449450 @cached_property
450451 def info (self ) -> AsyncInfoResource :
452+ """Control the Beeper Desktop application"""
451453 from .resources .info import AsyncInfoResource
452454
453455 return AsyncInfoResource (self )
@@ -700,6 +702,7 @@ def assets(self) -> assets.AssetsResourceWithRawResponse:
700702
701703 @cached_property
702704 def info (self ) -> info .InfoResourceWithRawResponse :
705+ """Control the Beeper Desktop application"""
703706 from .resources .info import InfoResourceWithRawResponse
704707
705708 return InfoResourceWithRawResponse (self ._client .info )
@@ -748,6 +751,7 @@ def assets(self) -> assets.AsyncAssetsResourceWithRawResponse:
748751
749752 @cached_property
750753 def info (self ) -> info .AsyncInfoResourceWithRawResponse :
754+ """Control the Beeper Desktop application"""
751755 from .resources .info import AsyncInfoResourceWithRawResponse
752756
753757 return AsyncInfoResourceWithRawResponse (self ._client .info )
@@ -796,6 +800,7 @@ def assets(self) -> assets.AssetsResourceWithStreamingResponse:
796800
797801 @cached_property
798802 def info (self ) -> info .InfoResourceWithStreamingResponse :
803+ """Control the Beeper Desktop application"""
799804 from .resources .info import InfoResourceWithStreamingResponse
800805
801806 return InfoResourceWithStreamingResponse (self ._client .info )
@@ -844,6 +849,7 @@ def assets(self) -> assets.AsyncAssetsResourceWithStreamingResponse:
844849
845850 @cached_property
846851 def info (self ) -> info .AsyncInfoResourceWithStreamingResponse :
852+ """Control the Beeper Desktop application"""
847853 from .resources .info import AsyncInfoResourceWithStreamingResponse
848854
849855 return AsyncInfoResourceWithStreamingResponse (self ._client .info )
0 commit comments