Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

IncrementCounterParams.md

File metadata and controls

32 lines (23 loc) · 1.08 KB

IncrementCounterParams

Properties

Name Type Description Notes
renewal_date datetime
kind str
increment_by float
period Period

Example

from monday_code.models.increment_counter_params import IncrementCounterParams

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

# convert the object into a dict
increment_counter_params_dict = increment_counter_params_instance.to_dict()
# create an instance of IncrementCounterParams from a dict
increment_counter_params_from_dict = IncrementCounterParams.from_dict(increment_counter_params_dict)

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