LikePage

Paginated list of likes

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
currentPageToken string
currentPageUrl string
likes array
nextPageToken string
nextPageUrl string
total integer
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-likepage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LikePage",
  "title": "LikePage",
  "type": "object",
  "description": "Paginated list of likes",
  "properties": {
    "currentPageToken": {
      "type": "string"
    },
    "currentPageUrl": {
      "type": "string",
      "format": "uri"
    },
    "likes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Like"
      }
    },
    "nextPageToken": {
      "type": "string"
    },
    "nextPageUrl": {
      "type": "string",
      "format": "uri"
    },
    "total": {
      "type": "integer"
    }
  }
}