Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 992 Bytes

CounterInputRequest.md

File metadata and controls

28 lines (20 loc) · 992 Bytes

CounterInputRequest

Properties

Name Type Description Notes
counter CounterInput [optional]

Example

from sparkfly_client.models.counter_input_request import CounterInputRequest

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

# convert the object into a dict
counter_input_request_dict = counter_input_request_instance.to_dict()
# create an instance of CounterInputRequest from a dict
counter_input_request_form_dict = counter_input_request.from_dict(counter_input_request_dict)

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