mirror of
https://github.com/LukeHagar/speakeasy-playground.git
synced 2025-12-09 20:57:44 +00:00
21 lines
325 B
Markdown
21 lines
325 B
Markdown
<!-- Start SDK Example Usage [usage] -->
|
|
```python
|
|
import shippo
|
|
from shippo.models import components
|
|
|
|
s = shippo.Shippo()
|
|
|
|
req = components.ExampleWithOneOfArray(
|
|
one_of_array=[
|
|
904965,
|
|
],
|
|
)
|
|
|
|
res = s.example(req)
|
|
|
|
if res is not None:
|
|
# handle response
|
|
pass
|
|
|
|
```
|
|
<!-- End SDK Example Usage [usage] --> |