Class: GustoEmbedded::Models::Operations::GetV1CompaniesCompanyUuidTimeOffRequestsRequest
- Inherits:
-
Object
- Object
- GustoEmbedded::Models::Operations::GetV1CompaniesCompanyUuidTimeOffRequestsRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/gusto_embedded/models/operations/get_v1_companies_company_uuid_time_off_requests_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(company_uuid:, employee_uuids: nil, status: nil, start_date: nil, end_date: nil, sort_order: nil, page: nil, per: nil, x_gusto_api_version: Models::Operations::GetV1CompaniesCompanyUuidTimeOffRequestsHeaderXGustoAPIVersion::TWO_THOUSAND_AND_TWENTY_FIVE_MINUS_06_MINUS_15) ⇒ GetV1CompaniesCompanyUuidTimeOffRequestsRequest
constructor
A new instance of GetV1CompaniesCompanyUuidTimeOffRequestsRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(company_uuid:, employee_uuids: nil, status: nil, start_date: nil, end_date: nil, sort_order: nil, page: nil, per: nil, x_gusto_api_version: Models::Operations::GetV1CompaniesCompanyUuidTimeOffRequestsHeaderXGustoAPIVersion::TWO_THOUSAND_AND_TWENTY_FIVE_MINUS_06_MINUS_15) ⇒ GetV1CompaniesCompanyUuidTimeOffRequestsRequest
Returns a new instance of GetV1CompaniesCompanyUuidTimeOffRequestsRequest.
35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/gusto_embedded/models/operations/get_v1_companies_company_uuid_time_off_requests_request.rb', line 35 def initialize(company_uuid:, employee_uuids: nil, status: nil, start_date: nil, end_date: nil, sort_order: nil, page: nil, per: nil, x_gusto_api_version: Models::Operations::GetV1CompaniesCompanyUuidTimeOffRequestsHeaderXGustoAPIVersion::TWO_THOUSAND_AND_TWENTY_FIVE_MINUS_06_MINUS_15) @company_uuid = company_uuid @employee_uuids = employee_uuids @status = status @start_date = start_date @end_date = end_date @sort_order = sort_order @page = page @per = per @x_gusto_api_version = x_gusto_api_version end |
Instance Method Details
#==(other) ⇒ Object
48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/gusto_embedded/models/operations/get_v1_companies_company_uuid_time_off_requests_request.rb', line 48 def ==(other) return false unless other.is_a? self.class return false unless @company_uuid == other.company_uuid return false unless @employee_uuids == other.employee_uuids return false unless @status == other.status return false unless @start_date == other.start_date return false unless @end_date == other.end_date return false unless @sort_order == other.sort_order return false unless @page == other.page return false unless @per == other.per return false unless @x_gusto_api_version == other.x_gusto_api_version true end |