Sha256: 23a12440e59e58c055edee18eb093e695fd6135b0a913c20984daae8dc2e4ac7
Contents?: true
Size: 1.04 KB
Versions: 16
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 < ::StackOne::Utils::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
16 entries across 16 versions & 1 rubygems