You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromclientapi_cpanel.models.inline_response200237_result_dataimportInlineResponse200237ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200237ResultData from a JSON stringinline_response200237_result_data_instance=InlineResponse200237ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200237ResultData.to_json())
# convert the object into a dictinline_response200237_result_data_dict=inline_response200237_result_data_instance.to_dict()
# create an instance of InlineResponse200237ResultData from a dictinline_response200237_result_data_from_dict=InlineResponse200237ResultData.from_dict(inline_response200237_result_data_dict)