-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rocío Fernandez
committed
Jul 27, 2017
1 parent
c0b1b24
commit b8f5c5f
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
module Besepa | ||
|
||
class Report < Besepa::Resource | ||
|
||
include Besepa::ApiCalls::List | ||
include Besepa::ApiCalls::Create | ||
include Besepa::ApiCalls::Search | ||
|
||
FIELDS = [:id, :until_at, :since_at, :kind, :created_at] | ||
|
||
FIELDS.each do |f| | ||
attr_accessor f | ||
end | ||
|
||
end | ||
end |