fresh generate; python sdk client (#894)

This commit is contained in:
Michael Quigley
2025-03-05 10:07:01 -05:00
parent 64d1fe70e8
commit cc96d02b38
180 changed files with 28063 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
# SparkDataSample
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**rx** | **float** | | [optional]
**tx** | **float** | | [optional]
## Example
```python
from zrok_api.models.spark_data_sample import SparkDataSample
# TODO update the JSON string below
json = "{}"
# create an instance of SparkDataSample from a JSON string
spark_data_sample_instance = SparkDataSample.from_json(json)
# print the JSON string representation of the object
print(SparkDataSample.to_json())
# convert the object into a dict
spark_data_sample_dict = spark_data_sample_instance.to_dict()
# create an instance of SparkDataSample from a dict
spark_data_sample_from_dict = SparkDataSample.from_dict(spark_data_sample_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)