| Name | Type | Description | Notes |
|---|
from instana_client.models.multiplication import Multiplication
# TODO update the JSON string below
json = "{}"
# create an instance of Multiplication from a JSON string
multiplication_instance = Multiplication.from_json(json)
# print the JSON string representation of the object
print(Multiplication.to_json())
# convert the object into a dict
multiplication_dict = multiplication_instance.to_dict()
# create an instance of Multiplication from a dict
multiplication_from_dict = Multiplication.from_dict(multiplication_dict)