Android · Schema

ReviewsReplyResponse

Response from posting a reply to a review.

AIAndroidAutomotiveGoogleMachine LearningMobile DevelopmentSDKTVWearables

Properties

Name Type Description
result object The result of the reply.
View JSON Schema on GitHub

JSON Schema

android-reviewsreplyresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReviewsReplyResponse",
  "title": "ReviewsReplyResponse",
  "type": "object",
  "description": "Response from posting a reply to a review.",
  "properties": {
    "result": {
      "type": "object",
      "description": "The result of the reply.",
      "properties": {
        "replyText": {
          "type": "string",
          "description": "The reply text that was posted."
        },
        "lastEdited": {
          "$ref": "#/components/schemas/Timestamp"
        }
      },
      "example": "example_value"
    }
  }
}