StoreRateAndReviewResult.ExtendedJsonData Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the complete result data for a rate and review request in JSON format. This includes information to determine if a user aborted the dialog and error details if the call was not successful.
public:
property Platform::String ^ ExtendedJsonData { Platform::String ^ get(); };
winrt::hstring ExtendedJsonData();
public string ExtendedJsonData { get; }
var string = storeRateAndReviewResult.extendedJsonData;
Public ReadOnly Property ExtendedJsonData As String
Property Value
A JSON-formatted string that contains the result from a rate and review request.
Remarks
Use the ExtendedJsonData property to access the complete data for the StoreRateAndReviewResult object as a JSON-formatted string in your code.
JSON Schema:
{ "type": "object", "properties": { "status": { "enum": [ "success", "aborted" ] }, "data": { "type": "object", "properties": { "updated": { "type": "boolean" } }, "required": [ "updated" ] }, "errorDetails": { "type": "string" } }, "required": [ "status", "errorDetails" ] }