Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 928 Bytes

File metadata and controls

30 lines (21 loc) · 928 Bytes

TypesCountInner

Properties

Name Type Description Notes
type str
count float

Example

from ibm_gdsc_sdk_saas.models.types_count_inner import TypesCountInner

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

# convert the object into a dict
types_count_inner_dict = types_count_inner_instance.to_dict()
# create an instance of TypesCountInner from a dict
types_count_inner_from_dict = TypesCountInner.from_dict(types_count_inner_dict)

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