Sha256: 83401141a382a7f98962fa2e9d1908f4e20df05f3d46e65deba24d0f0a9a8b2e
Contents?: true
Size: 1.04 KB
Versions: 3
Compression:
Stored size: 1.04 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Operations class HrisCreateEmployeeTimeOffRequestRequest < ::Crystalline::FieldAugmented extend T::Sig field :hris_create_time_off_request_dto, ::StackOne::Shared::HrisCreateTimeOffRequestDto, { 'request': { 'media_type': 'application/json' } } field :id, ::String, { 'path_param': { 'field_name': 'id', 'style': 'simple', 'explode': false } } # The account identifier field :x_account_id, ::String, { 'header': { 'field_name': 'x-account-id', 'style': 'simple', 'explode': false } } sig { params(hris_create_time_off_request_dto: ::StackOne::Shared::HrisCreateTimeOffRequestDto, id: ::String, x_account_id: ::String).void } def initialize(hris_create_time_off_request_dto: nil, id: nil, x_account_id: nil) @hris_create_time_off_request_dto = hris_create_time_off_request_dto @id = id @x_account_id = x_account_id end end end end
Version data entries
3 entries across 3 versions & 1 rubygems