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 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
fromclientapi_cpanel.models.inline_response200376_result_data_personalizationimportInlineResponse200376ResultDataPersonalization# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200376ResultDataPersonalization from a JSON stringinline_response200376_result_data_personalization_instance=InlineResponse200376ResultDataPersonalization.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200376ResultDataPersonalization.to_json())
# convert the object into a dictinline_response200376_result_data_personalization_dict=inline_response200376_result_data_personalization_instance.to_dict()
# create an instance of InlineResponse200376ResultDataPersonalization from a dictinline_response200376_result_data_personalization_from_dict=InlineResponse200376ResultDataPersonalization.from_dict(inline_response200376_result_data_personalization_dict)