Class: Unit::StopPayment::CreateStopPaymentRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/unit/models/stop_payment/create_stop_payment_request.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(account_id, amount, check_number, tags = nil, idempotency_key = nil) ⇒ CreateStopPaymentRequest

Returns a new instance of CreateStopPaymentRequest.

Parameters:

  • account_id (String)
  • amount (Integer)
  • check_number (String)
  • tags (Hash) (defaults to: nil)
    • optional

  • idempotency_key (String) (defaults to: nil)
    • optional



15
16
17
18
19
20
21
# File 'lib/unit/models/stop_payment/create_stop_payment_request.rb', line 15

def initialize(, amount, check_number, tags = nil, idempotency_key = nil)
  @account_id = 
  @amount = amount
  @check_number = check_number
  @tags = tags
  @idempotency_key = idempotency_key
end

Instance Attribute Details

#account_idObject (readonly)

Returns the value of attribute account_id.



8
9
10
# File 'lib/unit/models/stop_payment/create_stop_payment_request.rb', line 8

def 
  @account_id
end

#amountObject (readonly)

Returns the value of attribute amount.



8
9
10
# File 'lib/unit/models/stop_payment/create_stop_payment_request.rb', line 8

def amount
  @amount
end

#check_numberObject (readonly)

Returns the value of attribute check_number.



8
9
10
# File 'lib/unit/models/stop_payment/create_stop_payment_request.rb', line 8

def check_number
  @check_number
end

#idempotency_keyObject (readonly)

Returns the value of attribute idempotency_key.



8
9
10
# File 'lib/unit/models/stop_payment/create_stop_payment_request.rb', line 8

def idempotency_key
  @idempotency_key
end

#tagsObject (readonly)

Returns the value of attribute tags.



8
9
10
# File 'lib/unit/models/stop_payment/create_stop_payment_request.rb', line 8

def tags
  @tags
end

Instance Method Details

#to_json_apiObject



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/unit/models/stop_payment/create_stop_payment_request.rb', line 23

def to_json_api
  payload = {
    data: {
      type: "stopPayment",
      attributes: {
        amount: amount,
        checkNumber: check_number,
        tags: tags,
        idempotencyKey: idempotency_key
      },
      "relationships": {
        "account": Unit::Types::Relationship.new("depositAccount", ).to_hash
      }
    }
  }
  payload[:data][:attributes].compact!
  payload.to_json
end