Class: GustoEmbedded::Shared::PayrollReceipt
- Inherits:
-
Crystalline::FieldAugmented
- Object
- Crystalline::FieldAugmented
- GustoEmbedded::Shared::PayrollReceipt
- Extended by:
- T::Sig
- Defined in:
- lib/gusto_embedded/models/shared/payroll_receipt.rb
Overview
Example response
Instance Method Summary collapse
-
#initialize(company_uuid: nil, debit_date: nil, employee_compensations: nil, liability_of_licensee: nil, license: nil, license_uri: nil, licensee: nil, name_of_recipient: nil, name_of_sender: nil, payroll_uuid: nil, recipient_notice: nil, right_to_refund: nil, taxes: nil, totals: nil) ⇒ PayrollReceipt
constructor
A new instance of PayrollReceipt.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(company_uuid: nil, debit_date: nil, employee_compensations: nil, liability_of_licensee: nil, license: nil, license_uri: nil, licensee: nil, name_of_recipient: nil, name_of_sender: nil, payroll_uuid: nil, recipient_notice: nil, right_to_refund: nil, taxes: nil, totals: nil) ⇒ PayrollReceipt
Returns a new instance of PayrollReceipt.
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/gusto_embedded/models/shared/payroll_receipt.rb', line 45 def initialize(company_uuid: nil, debit_date: nil, employee_compensations: nil, liability_of_licensee: nil, license: nil, license_uri: nil, licensee: nil, name_of_recipient: nil, name_of_sender: nil, payroll_uuid: nil, recipient_notice: nil, right_to_refund: nil, taxes: nil, totals: nil) @company_uuid = company_uuid @debit_date = debit_date @employee_compensations = employee_compensations @liability_of_licensee = liability_of_licensee @license = license @license_uri = license_uri @licensee = licensee @name_of_recipient = name_of_recipient @name_of_sender = name_of_sender @payroll_uuid = payroll_uuid @recipient_notice = recipient_notice @right_to_refund = right_to_refund @taxes = taxes @totals = totals end |