class BunqRb::CustomerStatementExport

CustomerStatementExport

Attributes

id[R]
status[R]

Public Class Methods

new(hsh = {}) click to toggle source
# File lib/bunq_rb/objects/customer_statement_export.rb, line 10
def initialize(hsh = {})
  @id = hsh["id"]
  @status = hsh["status"]
end
url(user_id, monetary_account_id) click to toggle source
# File lib/bunq_rb/objects/customer_statement_export.rb, line 15
def self.url(user_id, monetary_account_id)
  "/v1/user/#{user_id}/monetary-account/#{monetary_account_id}/customer-statement"
end