Method: StatementService.instance
- Defined in:
- lib/popbill/statement.rb
.instance(linkID, secretKey) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/popbill/statement.rb', line 7 def instance(linkID, secretKey) super(linkID, secretKey) @instance ||= new @instance.addScope("121") @instance.addScope("122") @instance.addScope("123") @instance.addScope("124") @instance.addScope("125") @instance.addScope("126") return @instance end |