Class: LockstepSdk::AtRiskInvoiceSummaryModel

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

Overview

Contains summarized data for an invoice

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params = {}) ⇒ AtRiskInvoiceSummaryModel

Initialize the AtRiskInvoiceSummaryModel using the provided prototype



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

def initialize(params = {})
    @report_date = params.dig(:report_date)
    @group_key = params.dig(:group_key)
    @customer_id = params.dig(:customer_id)
    @invoice_id = params.dig(:invoice_id)
    @invoice_number = params.dig(:invoice_number)
    @invoice_date = params.dig(:invoice_date)
    @customer_name = params.dig(:customer_name)
    @status = params.dig(:status)
    @payment_due_date = params.dig(:payment_due_date)
    @invoice_amount = params.dig(:invoice_amount)
    @outstanding_balance = params.dig(:outstanding_balance)
    @invoice_type_code = params.dig(:invoice_type_code)
    @newest_activity = params.dig(:newest_activity)
    @days_past_due = params.dig(:days_past_due)
    @payment_numbers = params.dig(:payment_numbers)
    @payment_ids = params.dig(:payment_ids)
end

Instance Attribute Details

#customer_idUuid

Returns The ID number of the counterparty for the invoice, for example, a customer or vendor.

Returns:

  • (Uuid)

    The ID number of the counterparty for the invoice, for example, a customer or vendor.



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

def customer_id
  @customer_id
end

#customer_nameString

Returns The name of the counterparty for the invoice, for example, a customer or vendor.

Returns:

  • (String)

    The name of the counterparty for the invoice, for example, a customer or vendor.



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

def customer_name
  @customer_name
end

#days_past_dueInt32

Returns The number of days this Invoice is past due.

Returns:

  • (Int32)

    The number of days this Invoice is past due.



101
102
103
# File 'lib/lockstep_sdk/models/at_risk_invoice_summary_model.rb', line 101

def days_past_due
  @days_past_due
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).



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

def group_key
  @group_key
end

#invoice_amountDouble

Returns The total amount of the Invoice.

Returns:

  • (Double)

    The total amount of the Invoice.



85
86
87
# File 'lib/lockstep_sdk/models/at_risk_invoice_summary_model.rb', line 85

def invoice_amount
  @invoice_amount
end

#invoice_dateDate

Returns The reporting date for this invoice.

Returns:

  • (Date)

    The reporting date for this invoice.



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

def invoice_date
  @invoice_date
end

#invoice_idUuid

Returns The unique ID number of this invoice.

Returns:

  • (Uuid)

    The unique ID number of this invoice.



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

def invoice_id
  @invoice_id
end

#invoice_numberString

Returns A reference code that is used to identify this invoice. The meaning of this field is specific to the ERP or accounting system used by the user.

Returns:

  • (String)

    A reference code that is used to identify this invoice. The meaning of this field is specific to the ERP or accounting system used by the user.



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

def invoice_number
  @invoice_number
end

#invoice_type_codeString

Returns A code identifying the type of this Invoice.

Returns:

  • (String)

    A code identifying the type of this Invoice.



93
94
95
# File 'lib/lockstep_sdk/models/at_risk_invoice_summary_model.rb', line 93

def invoice_type_code
  @invoice_type_code
end

#newest_activityDate

Returns The date stamp for the newest Activity on this Invoice.

Returns:

  • (Date)

    The date stamp for the newest Activity on this Invoice.



97
98
99
# File 'lib/lockstep_sdk/models/at_risk_invoice_summary_model.rb', line 97

def newest_activity
  @newest_activity
end

#outstanding_balanceDouble

Returns The remaining balance value of this invoice.

Returns:

  • (Double)

    The remaining balance value of this invoice.



89
90
91
# File 'lib/lockstep_sdk/models/at_risk_invoice_summary_model.rb', line 89

def outstanding_balance
  @outstanding_balance
end

#payment_due_dateDate

Returns The due date of the invoice.

Returns:

  • (Date)

    The due date of the invoice.



81
82
83
# File 'lib/lockstep_sdk/models/at_risk_invoice_summary_model.rb', line 81

def payment_due_date
  @payment_due_date
end

#payment_idsUuid

Returns The ids of the payments associated to this invoice.

Returns:

  • (Uuid)

    The ids of the payments associated to this invoice.



109
110
111
# File 'lib/lockstep_sdk/models/at_risk_invoice_summary_model.rb', line 109

def payment_ids
  @payment_ids
end

#payment_numbersString

Returns The memo text of the payments associated to this invoice.

Returns:

  • (String)

    The memo text of the payments associated to this invoice.



105
106
107
# File 'lib/lockstep_sdk/models/at_risk_invoice_summary_model.rb', line 105

def payment_numbers
  @payment_numbers
end

#report_dateDate

Returns The date of the report.

Returns:

  • (Date)

    The date of the report



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

def report_date
  @report_date
end

#statusString

Returns The status of the invoice.

Returns:

  • (String)

    The status of the invoice.



77
78
79
# File 'lib/lockstep_sdk/models/at_risk_invoice_summary_model.rb', line 77

def status
  @status
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



113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# File 'lib/lockstep_sdk/models/at_risk_invoice_summary_model.rb', line 113

def as_json(options={})
    {
        'reportDate' => @report_date,
        'groupKey' => @group_key,
        'customerId' => @customer_id,
        'invoiceId' => @invoice_id,
        'invoiceNumber' => @invoice_number,
        'invoiceDate' => @invoice_date,
        'customerName' => @customer_name,
        'status' => @status,
        'paymentDueDate' => @payment_due_date,
        'invoiceAmount' => @invoice_amount,
        'outstandingBalance' => @outstanding_balance,
        'invoiceTypeCode' => @invoice_type_code,
        'newestActivity' => @newest_activity,
        'daysPastDue' => @days_past_due,
        'paymentNumbers' => @payment_numbers,
        'paymentIds' => @payment_ids,
    }
end

#to_json(*options) ⇒ String

Returns This object converted to a JSON string.

Returns:

  • (String)

    This object converted to a JSON string



136
137
138
# File 'lib/lockstep_sdk/models/at_risk_invoice_summary_model.rb', line 136

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