Class: Mandrill::Tags
- Inherits:
-
Object
- Object
- Mandrill::Tags
- Defined in:
- lib/mandrill/api.rb
Instance Attribute Summary collapse
-
#master ⇒ Object
Returns the value of attribute master.
Instance Method Summary collapse
-
#all_time_series ⇒ Array
Return the recent history (hourly stats for the last 30 days) for all tags.
-
#delete(tag) ⇒ Hash
Deletes a tag permanently.
-
#info(tag) ⇒ Hash
Return more detailed information about a single tag, including aggregates of recent stats.
-
#initialize(master) ⇒ Tags
constructor
A new instance of Tags.
-
#list ⇒ Array
Return all of the user-defined tag information.
-
#time_series(tag) ⇒ Array
Return the recent history (hourly stats for the last 30 days) for a tag.
Constructor Details
#initialize(master) ⇒ Tags
Returns a new instance of Tags.
513 514 515 |
# File 'lib/mandrill/api.rb', line 513 def initialize(master) @master = master end |
Instance Attribute Details
#master ⇒ Object
Returns the value of attribute master.
511 512 513 |
# File 'lib/mandrill/api.rb', line 511 def master @master end |
Instance Method Details
#all_time_series ⇒ Array
Return the recent history (hourly stats for the last 30 days) for all tags
662 663 664 665 |
# File 'lib/mandrill/api.rb', line 662 def all_time_series() _params = {} return @master.call 'tags/all-time-series', _params end |
#delete(tag) ⇒ Hash
Deletes a tag permanently. Deleting a tag removes the tag from any messages that have been sent, and also deletes the tag’s stats. There is no way to undo this operation, so use it carefully.
550 551 552 553 |
# File 'lib/mandrill/api.rb', line 550 def delete(tag) _params = {:tag => tag} return @master.call 'tags/delete', _params end |
#info(tag) ⇒ Hash
Return more detailed information about a single tag, including aggregates of recent stats
623 624 625 626 |
# File 'lib/mandrill/api.rb', line 623 def info(tag) _params = {:tag => tag} return @master.call 'tags/info', _params end |
#list ⇒ Array
Return all of the user-defined tag information
531 532 533 534 |
# File 'lib/mandrill/api.rb', line 531 def list() _params = {} return @master.call 'tags/list', _params end |
#time_series(tag) ⇒ Array
Return the recent history (hourly stats for the last 30 days) for a tag
643 644 645 646 |
# File 'lib/mandrill/api.rb', line 643 def time_series(tag) _params = {:tag => tag} return @master.call 'tags/time-series', _params end |