Class: GustoEmbedded::Models::Operations::PostV1CompaniesCompanyIdContractorPaymentGroupsRequestBody
- Inherits:
-
Object
- Object
- GustoEmbedded::Models::Operations::PostV1CompaniesCompanyIdContractorPaymentGroupsRequestBody
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/gusto_embedded/models/operations/post_v1_companies_company_id_contractor_payment_groups_requestbody.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(check_date:, creation_token:, contractor_payments:, submission_blockers: nil) ⇒ PostV1CompaniesCompanyIdContractorPaymentGroupsRequestBody
constructor
A new instance of PostV1CompaniesCompanyIdContractorPaymentGroupsRequestBody.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(check_date:, creation_token:, contractor_payments:, submission_blockers: nil) ⇒ PostV1CompaniesCompanyIdContractorPaymentGroupsRequestBody
Returns a new instance of PostV1CompaniesCompanyIdContractorPaymentGroupsRequestBody.
25 26 27 28 29 30 |
# File 'lib/gusto_embedded/models/operations/post_v1_companies_company_id_contractor_payment_groups_requestbody.rb', line 25 def initialize(check_date:, creation_token:, contractor_payments:, submission_blockers: nil) @check_date = check_date @creation_token = creation_token @contractor_payments = contractor_payments @submission_blockers = submission_blockers end |
Instance Method Details
#==(other) ⇒ Object
33 34 35 36 37 38 39 40 |
# File 'lib/gusto_embedded/models/operations/post_v1_companies_company_id_contractor_payment_groups_requestbody.rb', line 33 def ==(other) return false unless other.is_a? self.class return false unless @check_date == other.check_date return false unless @creation_token == other.creation_token return false unless @contractor_payments == other.contractor_payments return false unless @submission_blockers == other.submission_blockers true end |