Android · Schema

ListSubscriptionOffersResponse

Response containing a list of subscription offers.

AIAndroidAutomotiveGoogleMachine LearningMobile DevelopmentSDKTVWearables

Properties

Name Type Description
subscriptionOffers array
nextPageToken string Token for the next page of results.
View JSON Schema on GitHub

JSON Schema

android-listsubscriptionoffersresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListSubscriptionOffersResponse",
  "title": "ListSubscriptionOffersResponse",
  "type": "object",
  "description": "Response containing a list of subscription offers.",
  "properties": {
    "subscriptionOffers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SubscriptionOffer"
      },
      "example": []
    },
    "nextPageToken": {
      "type": "string",
      "description": "Token for the next page of results.",
      "example": "example_value"
    }
  }
}