Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 972 Bytes

CounterResponse.md

File metadata and controls

29 lines (21 loc) · 972 Bytes

CounterResponse

Properties

Name Type Description Notes
counter Counter [optional]
errors Dict[str, str] [optional]

Example

from sparkfly_client.models.counter_response import CounterResponse

# TODO update the JSON string below
json = "{}"
# create an instance of CounterResponse from a JSON string
counter_response_instance = CounterResponse.from_json(json)
# print the JSON string representation of the object
print CounterResponse.to_json()

# convert the object into a dict
counter_response_dict = counter_response_instance.to_dict()
# create an instance of CounterResponse from a dict
counter_response_form_dict = counter_response.from_dict(counter_response_dict)

[Back to Model list] [Back to API list] [Back to README]