Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.04 KB

File metadata and controls

32 lines (26 loc) · 1.04 KB

Zernio::ReviewWebhookReview

Properties

Name Type Description Notes
id String Platform review ID (e.g. "accounts/123/locations/456/reviews/789" for Google Business).
platform String Platform the review originated on. Currently Google Business Profile only.
rating Integer Star rating the reviewer gave.
text String Review text content. May be empty if the reviewer left only a rating.
reviewer ReviewWebhookReviewReviewer
created_at Time
has_reply Boolean Whether the connected account has replied to this review.
reply ReviewWebhookReviewReply [optional]

Example

require 'zernio-sdk'

instance = Zernio::ReviewWebhookReview.new(
  id: null,
  platform: null,
  rating: null,
  text: null,
  reviewer: null,
  created_at: null,
  has_reply: null,
  reply: null
)