zrok/sdk/python/src/docs/SparkDataSample.md
2025-03-05 10:07:01 -05:00

938 B

SparkDataSample

Properties

Name Type Description Notes
rx float [optional]
tx float [optional]

Example

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] [Back to API list] [Back to README]