Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2.27 KB

File metadata and controls

36 lines (27 loc) · 2.27 KB

InlineResponse200237ResultData

Properties

Name Type Description Notes
content bytearray The file's contents. A string value. Note: Behavior is undefined if the calling context requires an encoding that conflicts with the file contents. For example, if the file contents are ISO-8859-1 but the context requires UTF-8 (as is the case with JSON), the system may apply an extra layer of UTF-8 encoding in order to satisfy the request. [optional]
dir str The absolute path to the directory that contains the selected file. [optional]
filename str The file's name. [optional]
from_char str The file's previous character encoding. If the request’s `from_charset` was `DETECT`, this will contain the detected encoding. Otherwise, it will contain the request’s `from_charset` value. [optional]
from_charset object [optional]
path str The absolute path to the file. [optional]
to_char str The file's new character encoding. If the request’s `from_charset` was `LOCALE`, this will contain the locale’s encoding. Otherwise, it will contain the request’s `to_charset` value. [optional]
to_charset object [optional]

Example

from clientapi_cpanel.models.inline_response200237_result_data import InlineResponse200237ResultData

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

# convert the object into a dict
inline_response200237_result_data_dict = inline_response200237_result_data_instance.to_dict()
# create an instance of InlineResponse200237ResultData from a dict
inline_response200237_result_data_from_dict = InlineResponse200237ResultData.from_dict(inline_response200237_result_data_dict)

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