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