Method: Unit::Card::ListCardParams#initialize
- Defined in:
- lib/unit/models/card/list_card_params.rb
#initialize(limit = CARD_LIST_LIMIT, offset = CARD_LIST_OFFSET, account_id = nil, customer_id = nil, tags = nil, status = nil, include = nil, sort = nil) ⇒ ListCardParams
Returns a new instance of ListCardParams.
18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/unit/models/card/list_card_params.rb', line 18 def initialize(limit = CARD_LIST_LIMIT, offset = CARD_LIST_OFFSET, account_id = nil, customer_id = nil, = nil, status = nil, include = nil, sort = nil) @limit = limit @offset = offset @account_id = account_id @customer_id = customer_id = @status = status @include = include @sort = sort end |