Method: Clayful::ReviewComment.count
- Defined in:
- lib/models/review_comment.rb
.count(*args) ⇒ Object
42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/models/review_comment.rb', line 42 def self.count(*args) Clayful.call_api({ 'model_name' => @@name, 'method_name' => 'count', 'http_method' => 'GET', 'path' => '/v1/products/reviews/comments/count', 'params' => [], 'args' => args }) end |