Class: LockstepSdk::RiskRateModel

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

Overview

Represents a risk rate calculation for a single month

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params = {}) ⇒ RiskRateModel

Initialize the RiskRateModel using the provided prototype



24
25
26
27
28
29
30
31
32
33
34
# File 'lib/lockstep_sdk/models/risk_rate_model.rb', line 24

def initialize(params = {})
    @group_key = params.dig(:group_key)
    @report_period = params.dig(:report_period)
    @invoice_month_name = params.dig(:invoice_month_name)
    @total_invoice_count = params.dig(:total_invoice_count)
    @total_invoice_amount = params.dig(:total_invoice_amount)
    @at_risk_count = params.dig(:at_risk_count)
    @at_risk_amount = params.dig(:at_risk_amount)
    @at_risk_count_percentage = params.dig(:at_risk_count_percentage)
    @at_risk_percentage = params.dig(:at_risk_percentage)
end

Instance Attribute Details

#at_risk_amountDouble

Returns The sum of the outstanding balance of open invoices over 90 days from the calculation month.

Returns:

  • (Double)

    The sum of the outstanding balance of open invoices over 90 days from the calculation month



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

def at_risk_amount
  @at_risk_amount
end

#at_risk_countInt32

Returns The count of open invoices over 90 days from the calculation month.

Returns:

  • (Int32)

    The count of open invoices over 90 days from the calculation month



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

def at_risk_count
  @at_risk_count
end

#at_risk_count_percentageDouble

Returns The percentage of all open invoices for the calculation month that are over 90 days based on count.

Returns:

  • (Double)

    The percentage of all open invoices for the calculation month that are over 90 days based on count



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

def at_risk_count_percentage
  @at_risk_count_percentage
end

#at_risk_percentageDouble

Returns The percentage of all open invoices for the calculation month that are over 90 days based on outstanding balance.

Returns:

  • (Double)

    The percentage of all open invoices for the calculation month that are over 90 days based on outstanding balance



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

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



37
38
39
# File 'lib/lockstep_sdk/models/risk_rate_model.rb', line 37

def group_key
  @group_key
end

#invoice_month_nameString

Returns The string name of the month the risk rate was calculated for.

Returns:

  • (String)

    The string name of the month the risk rate was calculated for



41
42
43
# File 'lib/lockstep_sdk/models/risk_rate_model.rb', line 41

def invoice_month_name
  @invoice_month_name
end

#report_periodDate-time

Returns The month the risk rate was calculated for.

Returns:

  • (Date-time)

    The month the risk rate was calculated for



39
40
41
# File 'lib/lockstep_sdk/models/risk_rate_model.rb', line 39

def report_period
  @report_period
end

#total_invoice_amountDouble

Returns The sum of the total amount for invoices in the calculation month.

Returns:

  • (Double)

    The sum of the total amount for invoices in the calculation month



45
46
47
# File 'lib/lockstep_sdk/models/risk_rate_model.rb', line 45

def total_invoice_amount
  @total_invoice_amount
end

#total_invoice_countInt32

Returns The count of all invoices in the calculation month.

Returns:

  • (Int32)

    The count of all invoices in the calculation month



43
44
45
# File 'lib/lockstep_sdk/models/risk_rate_model.rb', line 43

def total_invoice_count
  @total_invoice_count
end