function __construct($args)
 {
     parent::__construct($args);
     if ($this->api->ends_with($this->path, '/delete')) {
         $this->comment_object_format['status']['deleted'] = 'The comment has been deleted permanently.';
     }
 }
 function __construct($args)
 {
     parent::__construct($args);
     $this->query = array_merge($this->query, array('number' => '(int=20) The number of comments to return.  Limit: 100. When using hierarchical=1, number refers to the number of top-level comments returned.', 'offset' => '(int=0) 0-indexed offset. Not available if using hierarchical=1.', 'page' => '(int) Return the Nth 1-indexed page of comments.  Takes precedence over the <code>offset</code> parameter. When using hierarchical=1, pagination is a bit different.  See the note on the number parameter.', 'order' => array('DESC' => 'Return comments in descending order from newest to oldest.', 'ASC' => 'Return comments in ascending order from oldest to newest.'), 'hierarchical' => array('false' => '', 'true' => '(BETA) Order the comment list hierarchically.'), 'after' => '(ISO 8601 datetime) Return comments dated on or after the specified datetime. Not available if using hierarchical=1.', 'before' => '(ISO 8601 datetime) Return comments dated on or before the specified datetime. Not available if using hierarchical=1.', 'type' => array('any' => 'Return all comments regardless of type.', 'comment' => 'Return only regular comments.', 'trackback' => 'Return only trackbacks.', 'pingback' => 'Return only pingbacks.', 'pings' => 'Return both trackbacks and pingbacks.'), 'status' => array('approved' => 'Return only approved comments.', 'unapproved' => 'Return only comments in the moderation queue.', 'spam' => 'Return only comments marked as spam.', 'trash' => 'Return only comments in the trash.', 'all' => 'Return comments of all statuses.')));
 }
 function __construct($args)
 {
     parent::__construct($args);
     $this->query = array_merge($this->query, array('number' => '(int=20) The number of comments to return.  Limit: 100.', 'offset' => '(int=0) 0-indexed offset.', 'page' => '(int) Return the Nth 1-indexed page of comments.  Takes precedence over the <code>offset</code> parameter.', 'order' => array('DESC' => 'Return comments in descending order from newest to oldest.', 'ASC' => 'Return comments in ascending order from oldest to newest.'), 'after' => '(ISO 8601 datetime) Return comments dated on or after the specified datetime.', 'before' => '(ISO 8601 datetime) Return comments dated on or before the specified datetime.', 'type' => array('any' => 'Return all comments regardless of type.', 'comment' => 'Return only regular comments.', 'trackback' => 'Return only trackbacks.', 'pingback' => 'Return only pingbacks.', 'pings' => 'Return both trackbacks and pingbacks.'), 'status' => array('approved' => 'Return only approved comments.', 'unapproved' => 'Return only comments in the moderation queue.', 'spam' => 'Return only comments marked as spam.', 'trash' => 'Return only comments in the trash.', 'all' => 'Return comments of all statuses.')));
 }