StoreRateAndReviewResult.ExtendedJsonData Property

Definition

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

String

Platform::String

winrt::hstring

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" ] }

Applies to

See also