Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.73 KB

InlineResponse200376ResultDataPersonalization.md

File metadata and controls

31 lines (22 loc) · 1.73 KB

InlineResponse200376ResultDataPersonalization

Properties

Name Type Description Notes
reason str The message that describes the failure if `success` returns `0`, or `OK` if `success` returns `1`. [optional]
success int Whether the function successfully saved the value on the server. - `1` — Successful. - `0` — Unsuccessful. [optional]
value str The value stored for the associated NVData key, or a null value if the key does not exist in the store. [optional]

Example

from clientapi_cpanel.models.inline_response200376_result_data_personalization import InlineResponse200376ResultDataPersonalization

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

# convert the object into a dict
inline_response200376_result_data_personalization_dict = inline_response200376_result_data_personalization_instance.to_dict()
# create an instance of InlineResponse200376ResultDataPersonalization from a dict
inline_response200376_result_data_personalization_from_dict = InlineResponse200376ResultDataPersonalization.from_dict(inline_response200376_result_data_personalization_dict)

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