Class: LockstepSdk::PaymentAppliedModel

Inherits:
Object
  • Object
show all
Defined in:
lib/lockstep_sdk/models/payment_applied_model.rb

Overview

A Payment Application is created by a business who receives a Payment from a customer. A customer may make a single Payment to match an Invoice exactly, a partial Payment for an Invoice, or a single Payment may be made for multiple smaller Invoices. The Payment Application contains information about which Invoices are connected to which Payments and for which amounts.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params = {}) ⇒ PaymentAppliedModel

Initialize the PaymentAppliedModel using the provided prototype



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 29

def initialize(params = {})
    @group_key = params.dig(:group_key)
    @payment_applied_id = params.dig(:payment_applied_id)
    @invoice_id = params.dig(:invoice_id)
    @payment_id = params.dig(:payment_id)
    @erp_key = params.dig(:erp_key)
    @entry_number = params.dig(:entry_number)
    @apply_to_invoice_date = params.dig(:apply_to_invoice_date)
    @payment_applied_amount = params.dig(:payment_applied_amount)
    @created = params.dig(:created)
    @created_user_id = params.dig(:created_user_id)
    @modified = params.dig(:modified)
    @modified_user_id = params.dig(:modified_user_id)
    @app_enrollment_id = params.dig(:app_enrollment_id)
    @invoice = params.dig(:invoice)
end

Instance Attribute Details

#app_enrollment_idUuid

Returns AppEnrollmentId for this record; used for mapping purposes.

Returns:

  • (Uuid)

    AppEnrollmentId for this record; used for mapping purposes.



71
72
73
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 71

def app_enrollment_id
  @app_enrollment_id
end

#apply_to_invoice_dateDate-time

Returns Date payment applied to invoice.

Returns:

  • (Date-time)

    Date payment applied to invoice.



59
60
61
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 59

def apply_to_invoice_date
  @apply_to_invoice_date
end

#createdDate-time

Returns Date payment applied record was created.

Returns:

  • (Date-time)

    Date payment applied record was created.



63
64
65
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 63

def created
  @created
end

#created_user_idUuid

Returns The id of the user who created this applied payment.

Returns:

  • (Uuid)

    The id of the user who created this applied payment.



65
66
67
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 65

def created_user_id
  @created_user_id
end

#entry_numberInt32

Returns Reference number for the payment applied.

Returns:

  • (Int32)

    Reference number for the payment applied.



57
58
59
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 57

def entry_number
  @entry_number
end

#erp_keyString

Returns The unique ID of this record as it was known in its originating financial system. If this company record was imported from a financial system, it will have the value `ErpKey` set to the original primary key number of the record as it was known in the originating financial system. If this record was not imported, this value will be `null`. For more information, see [Identity Columns](developer.lockstep.io/docs/identity-columns).

Returns:

  • (String)

    The unique ID of this record as it was known in its originating financial system. If this company record was imported from a financial system, it will have the value `ErpKey` set to the original primary key number of the record as it was known in the originating financial system. If this record was not imported, this value will be `null`. For more information, see [Identity Columns](developer.lockstep.io/docs/identity-columns).



55
56
57
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 55

def erp_key
  @erp_key
end

#group_keyUuid

Returns The GroupKey uniquely identifies a single Lockstep Platform account. All records for this account will share the same GroupKey value. GroupKey values cannot be changed once created. For more information, see [Accounts and GroupKeys](developer.lockstep.io/docs/accounts-and-groupkeys).

Returns:

  • (Uuid)

    The GroupKey uniquely identifies a single Lockstep Platform account. All records for this account will share the same GroupKey value. GroupKey values cannot be changed once created. For more information, see [Accounts and GroupKeys](developer.lockstep.io/docs/accounts-and-groupkeys).



47
48
49
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 47

def group_key
  @group_key
end

#invoiceInvoiceModel

Returns The invoice associated with this applied payment.

Returns:

  • (InvoiceModel)

    The invoice associated with this applied payment.



73
74
75
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 73

def invoice
  @invoice
end

#invoice_idUuid

Returns The Invoice this payment is applied to.

Returns:

  • (Uuid)

    The Invoice this payment is applied to.



51
52
53
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 51

def invoice_id
  @invoice_id
end

#modifiedDate-time

Returns Date payment applied record was modified.

Returns:

  • (Date-time)

    Date payment applied record was modified.



67
68
69
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 67

def modified
  @modified
end

#modified_user_idUuid

Returns The id of the user who modified this applied payment.

Returns:

  • (Uuid)

    The id of the user who modified this applied payment.



69
70
71
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 69

def modified_user_id
  @modified_user_id
end

#payment_applied_amountDouble

Returns Amount applied to invoice.

Returns:

  • (Double)

    Amount applied to invoice.



61
62
63
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 61

def payment_applied_amount
  @payment_applied_amount
end

#payment_applied_idUuid

Returns The unique ID of this record, automatically assigned by Lockstep when this record is added to the Lockstep platform. For the ID of this record in its originating financial system, see `ErpKey`.

Returns:

  • (Uuid)

    The unique ID of this record, automatically assigned by Lockstep when this record is added to the Lockstep platform. For the ID of this record in its originating financial system, see `ErpKey`.



49
50
51
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 49

def payment_applied_id
  @payment_applied_id
end

#payment_idUuid

Returns The Payment applied to the invoice.

Returns:

  • (Uuid)

    The Payment applied to the invoice.



53
54
55
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 53

def payment_id
  @payment_id
end

Instance Method Details

#as_json(options = {}) ⇒ object

Returns This object as a JSON key-value structure.

Returns:

  • (object)

    This object as a JSON key-value structure



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 76

def as_json(options={})
    {
        'groupKey' => @group_key,
        'paymentAppliedId' => @payment_applied_id,
        'invoiceId' => @invoice_id,
        'paymentId' => @payment_id,
        'erpKey' => @erp_key,
        'entryNumber' => @entry_number,
        'applyToInvoiceDate' => @apply_to_invoice_date,
        'paymentAppliedAmount' => @payment_applied_amount,
        'created' => @created,
        'createdUserId' => @created_user_id,
        'modified' => @modified,
        'modifiedUserId' => @modified_user_id,
        'appEnrollmentId' => @app_enrollment_id,
        'invoice' => @invoice,
    }
end

#to_json(*options) ⇒ String

Returns This object converted to a JSON string.

Returns:

  • (String)

    This object converted to a JSON string



96
97
98
# File 'lib/lockstep_sdk/models/payment_applied_model.rb', line 96

def to_json(*options)
    "[#{as_json(*options).to_json(*options)}]"
end