Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.15 KB

InlineResponse200ResultMetadata.md

File metadata and controls

29 lines (20 loc) · 1.15 KB

InlineResponse200ResultMetadata

Properties

Name Type Description Notes
transformed int Post-processing may have transformed the data. [optional]

Example

from clientapi_cpanel.models.inline_response200_result_metadata import InlineResponse200ResultMetadata

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

# convert the object into a dict
inline_response200_result_metadata_dict = inline_response200_result_metadata_instance.to_dict()
# create an instance of InlineResponse200ResultMetadata from a dict
inline_response200_result_metadata_from_dict = InlineResponse200ResultMetadata.from_dict(inline_response200_result_metadata_dict)

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